Skip to content

Commit 779bd95

Browse files
authored
Remove unused props (#62)
* remove unused props * Update Profile.vue * Update Dashboard.vue * Update AppLogo.vue
1 parent e488626 commit 779bd95

File tree

4 files changed

+0
-17
lines changed

4 files changed

+0
-17
lines changed

resources/js/components/AppLogo.vue

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,5 @@
11
<script setup lang="ts">
22
import AppLogoIcon from '@/components/AppLogoIcon.vue';
3-
4-
interface Props {
5-
class?: string;
6-
}
7-
8-
defineProps<Props>();
93
</script>
104

115
<template>

resources/js/pages/Dashboard.vue

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,6 @@ const breadcrumbs: BreadcrumbItem[] = [
1010
href: '/dashboard',
1111
},
1212
];
13-
14-
defineProps<{
15-
name?: string;
16-
}>();
1713
</script>
1814

1915
<template>

resources/js/pages/settings/Password.vue

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,6 @@ import { Input } from '@/components/ui/input';
1212
import { Label } from '@/components/ui/label';
1313
import { type BreadcrumbItem } from '@/types';
1414
15-
interface Props {
16-
className?: string;
17-
}
18-
19-
defineProps<Props>();
20-
2115
const breadcrumbItems: BreadcrumbItem[] = [
2216
{
2317
title: 'Password settings',

resources/js/pages/settings/Profile.vue

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ import { type BreadcrumbItem, type SharedData, type User } from '@/types';
1515
interface Props {
1616
mustVerifyEmail: boolean;
1717
status?: string;
18-
className?: string;
1918
}
2019
2120
defineProps<Props>();

0 commit comments

Comments
 (0)