diff --git a/src/dashboard/example/stores/players.ts b/src/dashboard/example/stores/players.ts index a7c35a7..6bfd0c1 100644 --- a/src/dashboard/example/stores/players.ts +++ b/src/dashboard/example/stores/players.ts @@ -97,7 +97,7 @@ export const usePlayersStore = defineStore('players', () => { replicant.data = normalizePlayers(value); replicant.save(); }, - { deep: true } + { deep: true, flush: 'sync' } ); const setPlayers = (value: PlayersMap) => {