Skip to content

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
TrySound committed May 25, 2024
1 parent 6a3ff14 commit a7b5c66
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/builder/app/builder/features/address-bar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,7 @@ const AddressBar = forwardRef<
let history = useStore($selectedPageHistory);
history = useMemo(() => {
return history.filter((item) => matchPathnamePattern(path, item));
}, [history]);
}, [history, path]);
const [pathParams, setPathParams] = useState(
() => $selectedPagePathParams.get() ?? {}
);
Expand Down

0 comments on commit a7b5c66

Please sign in to comment.