Skip to content

Commit 895c1e2

Browse files
committed
eslint
1 parent fec95c6 commit 895c1e2

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

resources/js/app.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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)

resources/js/ssr.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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);

resources/js/theme/global-pt.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@ export default {
1212
class: 'shadow-lg mb-0 mt-4'
1313
},
1414
},
15-
}
15+
};

0 commit comments

Comments
 (0)