Move error_template to components
Some checks failed
Push Workflows / clippy (push) Successful in 1m7s
Push Workflows / docs (push) Successful in 1m17s
Push Workflows / test (push) Successful in 1m39s
Push Workflows / leptos-test (push) Successful in 1m44s
Push Workflows / build (push) Successful in 3m35s
Push Workflows / docker-build (push) Successful in 7m5s
Push Workflows / nix-build (push) Has been cancelled

This commit is contained in:
2025-02-06 11:11:19 -05:00
parent fac75e1f54
commit f04ad57a5a
4 changed files with 2 additions and 2 deletions

View File

@ -11,7 +11,7 @@ use crate::pages::profile::*;
use crate::pages::albumpage::*;
use crate::pages::artist::*;
use crate::pages::songpage::*;
use crate::error_template::{AppError, ErrorTemplate};
use crate::components::error_template::{AppError, ErrorTemplate};
use crate::util::state::GlobalState;
pub fn shell(options: LeptosOptions) -> impl IntoView {

View File

@ -15,3 +15,4 @@ pub mod album_info;
pub mod queue;
pub mod playbar;
pub mod song;
pub mod error_template;

View File

@ -35,7 +35,6 @@ pub mod app;
pub mod models;
pub mod pages;
pub mod components;
pub mod error_template;
pub mod api;
pub mod util;