fix list filters

This commit is contained in:
jeffvli
2025-12-02 00:11:42 -08:00
parent 4abfbd1973
commit aff7a61bca
26 changed files with 1022 additions and 565 deletions
+1 -6
View File
@@ -1,4 +1,3 @@
import { NuqsAdapter } from '@offlegacy/nuqs-hash-router';
import isElectron from 'is-electron';
import { useMemo } from 'react';
import { Navigate, Outlet } from 'react-router';
@@ -43,9 +42,5 @@ export const AppOutlet = () => {
return <Navigate replace to={AppRoute.ACTION_REQUIRED} />;
}
return (
<NuqsAdapter>
<Outlet />
</NuqsAdapter>
);
return <Outlet />;
};