diff options
| author | 2026-03-29 01:19:25 +0800 | |
|---|---|---|
| committer | 2026-03-29 01:19:25 +0800 | |
| commit | 397cbb34b327a0addfdf8e36f859b456956b66fe (patch) | |
| tree | 81d5c51437ddcbe49cc8023151956cba7b909da8 /packages/ui/src/stores | |
| parent | e16320b34fa2dbb75e19142f7e8e31ecd41a512c (diff) | |
| download | DropOut-397cbb34b327a0addfdf8e36f859b456956b66fe.tar.gz DropOut-397cbb34b327a0addfdf8e36f859b456956b66fe.zip | |
fix(lint): apply ui code lint
Diffstat (limited to 'packages/ui/src/stores')
| -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}`); } |