refactor: 🎨 Refactor notes, event system and timelines

This commit is contained in:
Jesse Wierzbinski 2024-04-27 19:02:27 -10:00
parent 7461478170
commit 0f214b6a17
No known key found for this signature in database
18 changed files with 266 additions and 188 deletions

View file

@ -47,7 +47,6 @@
</ButtonsBase>
</div>
</aside>
<ComposerModal :open="composerOpen" @close="composerOpen = false" />
</template>
<script lang="ts" setup>
@ -64,7 +63,6 @@ const timelines = ref([
},
]);
const composerOpen = ref(false);
const loadingAuth = ref(false);
const appData = useAppData();
@ -72,7 +70,7 @@ const tokenData = useTokenData();
const client = useMegalodon();
const compose = () => {
composerOpen.value = true;
useEvent("composer:open");
};
const signIn = async () => {