Skip to content

Commit e23fa5d

Browse files
authored
fix(query-codemods): fix duplicate 'a' typo in placeholder data error (#10116)
fix(query-codemods): fix duplicate 'a' typo in placeholder data error message
1 parent 4b50c20 commit e23fa5d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/query-codemods/src/v5/keep-previous-data/utils/already-has-placeholder-data-property.cjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ class AlreadyHasPlaceholderDataProperty extends Error {
1919
const start = location.start.line
2020
const end = location.end.line
2121

22-
return `The usage in file "${filePath}" at line ${start}:${end} already contains a a "placeholderData" property. Please migrate this usage manually.`
22+
return `The usage in file "${filePath}" at line ${start}:${end} already contains a "placeholderData" property. Please migrate this usage manually.`
2323
}
2424
}
2525

0 commit comments

Comments
 (0)