diff --git a/web/src/app.rs b/web/src/app.rs
index 9c0d3c77..a4b37454 100644
--- a/web/src/app.rs
+++ b/web/src/app.rs
@@ -21,6 +21,7 @@ pub fn App() -> impl IntoView {
.unwrap_or_default();
let home_tl = Timeline::new(format!("{URL_BASE}/users/{username}/inbox/page"));
let server_tl = Timeline::new(format!("{URL_BASE}/inbox/page"));
+ let local_tl = Timeline::new(format!("{URL_BASE}/outbox/page"));
let user_tl = Timeline::new(format!("{URL_BASE}/users/{username}/outbox/page"));
let context_tl = Timeline::new(format!("{URL_BASE}/outbox/page"));
@@ -120,6 +121,7 @@ pub fn App() -> impl IntoView {