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 { } /> } /> + } /> } /> diff --git a/web/src/components/navigation.rs b/web/src/components/navigation.rs index 7e492ec1..7b9b8f32 100644 --- a/web/src/components/navigation.rs +++ b/web/src/components/navigation.rs @@ -39,6 +39,7 @@ pub fn Navigator() -> impl IntoView { +