chore: fix function name typo (#23306)

This commit is contained in:
Matri Qi 2025-08-03 10:09:26 +08:00 committed by GitHub
commit 99a4bd82b5
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
8 changed files with 15 additions and 15 deletions

View file

@ -121,7 +121,7 @@ export function getMarketplaceUrl(path: string, params?: Record<string, string |
return `${MARKETPLACE_URL_PREFIX}${path}?${searchParams.toString()}`
}
export const replaceSpaceWithUnderscreInVarNameInput = (input: HTMLInputElement) => {
export const replaceSpaceWithUnderscoreInVarNameInput = (input: HTMLInputElement) => {
const start = input.selectionStart
const end = input.selectionEnd