Skip to content

Commit 1acc291

Browse files
committed
Fix bug from merge from main
1 parent 1072085 commit 1acc291

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

ui/src/routes/debug/+page.svelte

+1
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@
2626
type RawDataType = 'guild' | 'base' | 'player' | 'pal' | 'item_container' | 'character_container';
2727
const appState = getAppState();
2828
const modal = getModalState();
29+
const ws = getSocketState();
2930
3031
let jsons: Record<RawDataType, JsonContent> = $state({
3132
guild: { content: { text: '' } },

ui/src/routes/edit/components/guilds/Guilds.svelte

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<script lang="ts">
22
import { palsData, buildingsData, itemsData, presetsData } from '$lib/data';
3-
import { getAppState, getModalState, getToastState } from '$states';
3+
import { getAppState, getModalState, getSocketState, getToastState } from '$states';
44
import { Input, List, Tooltip, TooltipButton } from '$components/ui';
55
import {
66
type ItemContainer,
@@ -29,6 +29,7 @@
2929
const appState = getAppState();
3030
const modal = getModalState();
3131
const toast = getToastState();
32+
const ws = getSocketState();
3233
3334
const VISIBLE_PAGE_BUBBLES = 16;
3435

0 commit comments

Comments
 (0)