diff --git a/apps/web/src/components/Basenames/RegistrationSearchInput/index.tsx b/apps/web/src/components/Basenames/RegistrationSearchInput/index.tsx index 0bb24992c3..bbeefe4362 100644 --- a/apps/web/src/components/Basenames/RegistrationSearchInput/index.tsx +++ b/apps/web/src/components/Basenames/RegistrationSearchInput/index.tsx @@ -73,7 +73,7 @@ export default function RegistrationSearchInput({ const handleSearchChange = useCallback((event: React.ChangeEvent) => { const { value } = event.target; - setSearch(value.replace(/[\s\.\-]+/g, '')); + setSearch(value.replace(/[\s\.]+/g, '')); }, []); useEffect(() => {