refactor: ⚰️ Remove old testing code

This commit is contained in:
Jesse Wierzbinski 2024-05-16 20:41:44 -10:00
parent c8e0cac6e2
commit f6153cb5fe
No known key found for this signature in database

View file

@ -44,7 +44,7 @@
import { OverlayScrollbarsComponent } from "#imports";
const { width } = useWindowSize();
const { n, o_i_d_c, t_e_s_t } = useMagicKeys();
const { n, o_i_d_c } = useMagicKeys();
const tokenData = useTokenData();
const client = useMegalodon(tokenData);
const providers = useSSOConfig();
@ -80,12 +80,5 @@ watchEffect(async () => {
const json = await response.json();
window.location.href = json.link;
}
if (t_e_s_t.value) {
useEvent("notification:new", {
type: "info",
title: "Test Notification",
message: "This is a test notification",
});
}
});
</script>