@@ -5,10 +5,10 @@ use crate::app::App;
55
66#[ cfg( not( feature = "server" ) ) ]
77fn main ( ) {
8- use shield_bootstrap:: dioxus :: BootstrapStyle ;
8+ use shield_bootstrap:: BootstrapDioxusStyle ;
99
1010 dioxus:: LaunchBuilder :: new ( )
11- . with_context ( BootstrapStyle :: default ( ) . context ( ) )
11+ . with_context ( BootstrapDioxusStyle :: default ( ) . context ( ) )
1212 . launch ( App )
1313}
1414
@@ -23,8 +23,8 @@ async fn main() {
2323 prelude:: { DioxusRouterExt , * } ,
2424 } ;
2525 use shield:: { Shield , ShieldOptions } ;
26- use shield_bootstrap:: dioxus :: BootstrapStyle ;
27- use shield_dioxus_axum:: { DioxusAxumIntegration , ShieldLayer } ;
26+ use shield_bootstrap:: BootstrapDioxusStyle ;
27+ use shield_dioxus_axum:: { AxumDioxusIntegration , ShieldLayer } ;
2828 use shield_memory:: { MemoryStorage , User } ;
2929 use shield_oidc:: { Keycloak , OidcMethod } ;
3030 use tokio:: net:: TcpListener ;
@@ -66,8 +66,8 @@ async fn main() {
6666 let router = Router :: new ( )
6767 . serve_dioxus_application (
6868 ServeConfigBuilder :: new ( )
69- . context ( DioxusAxumIntegration :: < User > :: default ( ) . context ( ) )
70- . context ( BootstrapStyle :: default ( ) . context ( ) )
69+ . context ( AxumDioxusIntegration :: < User > :: default ( ) . context ( ) )
70+ . context ( BootstrapDioxusStyle :: default ( ) . context ( ) )
7171 . build ( )
7272 . unwrap ( ) ,
7373 App ,
0 commit comments