Skip to content

Commit

Permalink
fix: remove location log (#528)
Browse files Browse the repository at this point in the history
  • Loading branch information
Kodylow authored Sep 23, 2024
1 parent 2d1dc36 commit c7ec89f
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion apps/router/src/context/guardian/GuardianContext.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,6 @@ export const GuardianContextProvider: React.FC<
> = ({ children }) => {
const [state, dispatch] = useReducer(reducer, initialState);
const location = useLocation();
console.log('location', location);
const guardianId = location.pathname.split('/')[2];
const config = useGuardianConfig(guardianId);
const guardianApi = useMemo(() => new GuardianApi(config), [config]);
Expand Down

0 comments on commit c7ec89f

Please sign in to comment.