diff --git a/src/App.svelte b/src/App.svelte
index c8169651..7332c8ab 100644
--- a/src/App.svelte
+++ b/src/App.svelte
@@ -11,6 +11,8 @@
import Settings from './lib/Setting/Settings.svelte';
import { showRealmInfoStore } from './ts/characterCards';
import RealmFrame from './lib/UI/Realm/RealmFrame.svelte';
+ import { AccountWarning } from './ts/storage/accountStorage';
+ import AccountWarningComp from './lib/Others/AccountWarningComp.svelte';
let didFirstSetup: boolean = false
let gridOpen = false
@@ -63,4 +65,7 @@
{#if $ShowRealmFrameStore}
{/if}
+ {#if $AccountWarning}
+
+ {/if}
\ No newline at end of file
diff --git a/src/lib/Others/AccountWarningComp.svelte b/src/lib/Others/AccountWarningComp.svelte
new file mode 100644
index 00000000..f7eed71e
--- /dev/null
+++ b/src/lib/Others/AccountWarningComp.svelte
@@ -0,0 +1,11 @@
+
+
\ No newline at end of file