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 d4ed0fd commit 40fce1b
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 @@ -6,7 +6,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 40fce1b

Please sign in to comment.