diff --git a/src/server/web/pages/run.rs b/src/server/web/pages/run.rs
index 2c4ead3..3ea089f 100644
--- a/src/server/web/pages/run.rs
+++ b/src/server/web/pages/run.rs
@@ -4,18 +4,14 @@ use axum::{
response::{IntoResponse, Response},
};
use futures::TryStreamExt;
-use maud::html;
+use maud::{html, Markup};
use sqlx::SqlitePool;
use crate::{
config::ServerConfig,
server::{
util,
- web::{
- base::{Base, Tab},
- components,
- paths::PathRunById,
- },
+ web::{components, page::Page, paths::PathRunById},
},
somehow,
};
@@ -35,7 +31,7 @@ async fn from_finished_run(
id: &str,
config: &'static ServerConfig,
db: &SqlitePool,
-) -> somehow::Result