diff options
Diffstat (limited to 'packages/ui/src/stores/game-store.ts')
| -rw-r--r-- | packages/ui/src/stores/game-store.ts | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/packages/ui/src/stores/game-store.ts b/packages/ui/src/stores/game-store.ts index 1eaf7e7..7b6e746 100644 --- a/packages/ui/src/stores/game-store.ts +++ b/packages/ui/src/stores/game-store.ts @@ -70,7 +70,9 @@ export const useGameStore = create<GameState>((set, get) => ({ }); if (wasStopped) { - toast.success(`Stopped Minecraft ${versionId} for instance ${instanceId}`); + toast.success( + `Stopped Minecraft ${versionId} for instance ${instanceId}`, + ); } else { toast.info(`Minecraft ${versionId} exited for instance ${instanceId}`); } |