Skip to content

Commit

Permalink
fix: code scanning error
Browse files Browse the repository at this point in the history
  • Loading branch information
harmeetsingh11 authored Aug 9, 2023
1 parent e044a03 commit 80df17c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/TopBar/TopBar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ export const TopBar: FC<TopBarProps> = ({ className }) => {
.split('-')
.join(' ')
.replace(removeString, '')
.replaceAll('+', ' ')
.replace(/\+/g, ' ')

useEffect(() => {
if (results > 0) {
Expand Down

0 comments on commit 80df17c

Please sign in to comment.