Skip to content

Commit 4be2e63

Browse files
authored
Merge pull request #19 from skn-036/noman
#19 removing unused imports
2 parents e2ac4bc + 7db66d2 commit 4be2e63

File tree

7 files changed

+3
-12
lines changed

7 files changed

+3
-12
lines changed

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

resources/js/app.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ app.use(pinia)
2121
.use(Toast, {
2222
pauseOnFocusLoss: false,
2323
hideProgressBar: true,
24-
timeout: 8000,
24+
timeout: 10000,
2525
})
2626
.directive('focus', focus)
2727
.mount('#app');

resources/js/src/components/page/UserSlider.vue

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -284,5 +284,4 @@ const onSubmit = async () => {
284284
</div>
285285
</AuthorizationFallback>
286286
</Slider>
287-
<!-- </AuthorizationFallback> -->
288287
</template>

resources/js/src/layouts/LayoutRenderer.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ const layout = computed(() =>
1212
</script>
1313
1414
<template>
15-
<div class="">
15+
<div>
1616
<LayoutDashboard v-if="layout === 'dashboard'" />
1717
1818
<!-- full layout -->

resources/js/src/pages/Permissions.vue

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,8 +64,6 @@ const onDelete = (permission) => {
6464
<CreateButton @click="showSlider(true)" />
6565
</div>
6666
67-
<UnAuthorized />
68-
6967
<div class="w-full">
7068
<Table>
7169
<THead>

resources/js/src/pages/Roles.vue

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
<script setup>
2-
import { watch } from 'vue';
32
import Table from '../components/table/Table.vue';
43
import THead from '../components/table/THead.vue';
54
import TBody from '../components/table/TBody.vue';
@@ -56,8 +55,6 @@ const onDelete = (role) => {
5655
<CreateButton @click="showSlider(true)" />
5756
</div>
5857
59-
<UnAuthorized />
60-
6158
<div class="w-full">
6259
<Table>
6360
<THead>

resources/js/src/pages/Users.vue

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
<script setup>
2-
import { watch } from 'vue';
32
import Table from '../components/table/Table.vue';
43
import THead from '../components/table/THead.vue';
54
import TBody from '../components/table/TBody.vue';
@@ -52,8 +51,6 @@ const onDelete = (user) => {
5251
<CreateButton @click="showSlider(true)" />
5352
</div>
5453
55-
<UnAuthorized />
56-
5754
<div class="w-full">
5855
<Table>
5956
<THead>

0 commit comments

Comments
 (0)