diff --git a/components/timelines/account.vue b/components/timelines/account.vue
index d8316ff..2d0d8e8 100644
--- a/components/timelines/account.vue
+++ b/components/timelines/account.vue
@@ -13,7 +13,7 @@ const client = useClient();
const timelineParameters = ref({});
const { timeline, loadNext, loadPrev } = useAccountTimeline(
client.value,
- props.id ?? null,
+ props.id || null,
timelineParameters,
);
diff --git a/components/timelines/timeline-scroller.vue b/components/timelines/timeline-scroller.vue
index c3eb31d..cb891a3 100644
--- a/components/timelines/timeline-scroller.vue
+++ b/components/timelines/timeline-scroller.vue
@@ -3,21 +3,24 @@
\ No newline at end of file
diff --git a/pages/[username]/index.vue b/pages/[username]/index.vue
index f2512bb..fabe1ea 100644
--- a/pages/[username]/index.vue
+++ b/pages/[username]/index.vue
@@ -12,7 +12,7 @@