when selecting a sort type it will get stored and used as the new default
All checks were successful
deploy / deploy (push) Successful in 1m0s
All checks were successful
deploy / deploy (push) Successful in 1m0s
This commit is contained in:
19
src/components/AppProvider.tsx
Normal file
19
src/components/AppProvider.tsx
Normal file
@ -0,0 +1,19 @@
|
||||
"use client";
|
||||
|
||||
import { usePlayerScoresStore } from "@/store/playerScoresStore";
|
||||
|
||||
type AppProviderProps = {
|
||||
children: React.ReactNode;
|
||||
};
|
||||
|
||||
usePlayerScoresStore.getState().updatePlayerScores();
|
||||
setTimeout(
|
||||
() => {
|
||||
usePlayerScoresStore.getState().updatePlayerScores();
|
||||
},
|
||||
1000 * 60 * 10,
|
||||
); // fetch new scores every 10 minutes
|
||||
|
||||
export default function AppProvider({ children }: AppProviderProps) {
|
||||
return <>{children}</>;
|
||||
}
|
Reference in New Issue
Block a user