Skip to content

Commit

Permalink
Fix styling error reported by restyled
Browse files Browse the repository at this point in the history
  • Loading branch information
yoshiokatsuneo committed Feb 12, 2025
1 parent f753add commit 8afd656
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/app/pages/queries/hooks/useAutocompleteFlags.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ export default function useAutocompleteFlags(schema) {
const isAvailable = true;
const [isEnabled, setIsEnabled] = useState(localOptions.get("liveAutocomplete", true));

const toggleAutocomplete = useCallback(state => {
const toggleAutocomplete = useCallback((state) => {
setIsEnabled(state);
localOptions.set("liveAutocomplete", state);
}, []);
Expand Down

0 comments on commit 8afd656

Please sign in to comment.