diff --git a/justfile b/justfile index 33a2b726af..e1be9d01d5 100644 --- a/justfile +++ b/justfile @@ -16,6 +16,9 @@ setup: just api/setup just web/setup +# restore notification files under api/dev +restore-notifications: + git checkout ./api/dev/notifications # starts ignoring a file already tracked by git. (gitignore will not apply to these files) [group('git')] diff --git a/web/components/Loading/Error.vue b/web/components/Loading/Error.vue index ff79ab312b..3e83face4d 100644 --- a/web/components/Loading/Error.vue +++ b/web/components/Loading/Error.vue @@ -22,7 +22,6 @@ import { cn } from '~/components/shadcn/utils'; const props = withDefaults( defineProps<{ class?: string; - /** hasdfsa */ loading: boolean; error: Error | null | undefined; }>(), diff --git a/web/components/Notifications/Indicator.vue b/web/components/Notifications/Indicator.vue index dc5cbce379..de338e57d7 100644 --- a/web/components/Notifications/Indicator.vue +++ b/web/components/Notifications/Indicator.vue @@ -1,32 +1,21 @@