diff --git a/client-solid/src/Util/Icons.tsx b/client-solid/src/Util/Icons.tsx index be7549b..545d41b 100644 --- a/client-solid/src/Util/Icons.tsx +++ b/client-solid/src/Util/Icons.tsx @@ -152,3 +152,22 @@ export function ThumbDown(): JSXElement { ); } + +export function CheckMark(): JSXElement { + return ( + + + + ); +} \ No newline at end of file diff --git a/server/src/state.rs b/server/src/state.rs index dbbd254..1a363db 100644 --- a/server/src/state.rs +++ b/server/src/state.rs @@ -50,6 +50,11 @@ impl ServerState { Some(u) => info!("Created default user {}", u.username), None => error!("Failed to create default user..."), } + match crate::db::db_new_user("hollgy".to_string(), "yomomonpizza".to_string(), &pool).await + { + Some(u) => info!("Created default user {}", u.username), + None => error!("Failed to create default user..."), + } match crate::db::db_new_user("demouser".to_string(), "demopw".to_string(), &pool).await { Some(u) => info!("Created default user {}", u.username), None => error!("Failed to create default user..."),