File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ createInertiaApp({
3535 // Global Toast component, show errors instead of standard Inertia modal response
3636 const Root = {
3737 setup ( ) {
38- const toast = useToast ( )
38+ const toast = useToast ( ) ;
3939 router . on ( 'invalid' , ( event ) => {
4040 const responseBody = event . detail . response ?. data ;
4141 if ( responseBody ?. error_summary && responseBody ?. error_detail ) {
@@ -53,7 +53,7 @@ createInertiaApp({
5353 h ( Toast , { position : 'bottom-right' } )
5454 ] ) ;
5555 }
56- }
56+ } ;
5757
5858 const app = createSSRApp ( Root )
5959 . use ( plugin )
Original file line number Diff line number Diff line change @@ -42,7 +42,7 @@ createServer((page) =>
4242 h ( Toast , { position : 'bottom-right' } )
4343 ] ) ;
4444 }
45- }
45+ } ;
4646
4747 // Create app
4848 const app = createSSRApp ( Root ) ;
Original file line number Diff line number Diff line change @@ -12,4 +12,4 @@ export default {
1212 class : 'shadow-lg mb-0 mt-4'
1313 } ,
1414 } ,
15- }
15+ } ;
You can’t perform that action at this time.
0 commit comments