ticker-serve: fix doctype

Este commit está contenido en:
Astro 2021-01-14 16:38:18 +01:00
padre 4520d60652
commit 3bc618204b
Se han modificado 1 ficheros con 1 adiciones y 1 borrados

Ver fichero

@ -138,7 +138,7 @@ fn render_index(app_state: &AppState) -> String {
</body>
</html>
);
format!("<DOCTYPE html>\n{}", doc.to_string())
format!("<!DOCTYPE html>\n{}", doc.to_string())
}
pub fn index(state: State) -> (State, Response<Body>) {