diff --git a/composables/users.ts b/composables/users.ts
index 143f5b82..9af04f68 100644
--- a/composables/users.ts
+++ b/composables/users.ts
@@ -110,7 +110,7 @@ async function loginTo(user?: Omit<UserLogin, 'account'> & { account?: mastodon.
   const instance = await fetchV1Instance({
     url,
   })
-  const masto = await createClient({
+  const masto = createClient({
     url,
     streamingApiUrl: instance.urls.streamingApi,
     accessToken: user?.token,
diff --git a/pages/settings/profile/appearance.vue b/pages/settings/profile/appearance.vue
index d5f4f444..f1636580 100644
--- a/pages/settings/profile/appearance.vue
+++ b/pages/settings/profile/appearance.vue
@@ -1,6 +1,5 @@
 <script lang="ts" setup>
 import type { mastodon } from 'masto'
-import { satisfies } from 'semver'
 import { useForm } from 'slimeform'
 import { parse } from 'ultrahtml'