diff --git a/apps/dashboard/src/components/CommandPalette.tsx b/apps/dashboard/src/components/CommandPalette.tsx index d97cedc..135ef09 100644 --- a/apps/dashboard/src/components/CommandPalette.tsx +++ b/apps/dashboard/src/components/CommandPalette.tsx @@ -119,3 +119,4 @@ export function CommandPalette({ open, onClose }: CommandPaletteProps) { ); } + diff --git a/apps/dashboard/src/components/ErrorBoundary.tsx b/apps/dashboard/src/components/ErrorBoundary.tsx index 2e82ca8..c696f76 100644 --- a/apps/dashboard/src/components/ErrorBoundary.tsx +++ b/apps/dashboard/src/components/ErrorBoundary.tsx @@ -45,3 +45,4 @@ export class ErrorBoundary extends Component { return this.props.children; } } + diff --git a/apps/dashboard/src/components/LiveLogStream.tsx b/apps/dashboard/src/components/LiveLogStream.tsx index 88840bc..d335725 100644 --- a/apps/dashboard/src/components/LiveLogStream.tsx +++ b/apps/dashboard/src/components/LiveLogStream.tsx @@ -164,3 +164,4 @@ export function LiveLogStream({ projectId, maxRows = 200, autoScroll = true }: L ); } + diff --git a/apps/dashboard/src/components/auth/AuthGuard.tsx b/apps/dashboard/src/components/auth/AuthGuard.tsx index f1c97dc..068ae07 100644 --- a/apps/dashboard/src/components/auth/AuthGuard.tsx +++ b/apps/dashboard/src/components/auth/AuthGuard.tsx @@ -14,3 +14,4 @@ export function AuthGuard({ children }: { children: React.ReactNode }) { if (!getToken()) return null; return <>{children}; } + diff --git a/apps/dashboard/src/components/auth/SetupGuard.tsx b/apps/dashboard/src/components/auth/SetupGuard.tsx index 0496bd9..9e4a60b 100644 --- a/apps/dashboard/src/components/auth/SetupGuard.tsx +++ b/apps/dashboard/src/components/auth/SetupGuard.tsx @@ -27,3 +27,4 @@ export function SetupGuard({ children }: { children: React.ReactNode }) { if (checking) return null; return <>{children}; } + diff --git a/apps/dashboard/src/components/ui/Avatar.tsx b/apps/dashboard/src/components/ui/Avatar.tsx index c1b042f..dc694a7 100644 --- a/apps/dashboard/src/components/ui/Avatar.tsx +++ b/apps/dashboard/src/components/ui/Avatar.tsx @@ -20,3 +20,4 @@ export function Avatar({ email, size = 32 }: AvatarProps) { ); } + diff --git a/apps/dashboard/src/components/ui/ConfirmDialog.tsx b/apps/dashboard/src/components/ui/ConfirmDialog.tsx index 61e4778..db8e6ad 100644 --- a/apps/dashboard/src/components/ui/ConfirmDialog.tsx +++ b/apps/dashboard/src/components/ui/ConfirmDialog.tsx @@ -79,3 +79,4 @@ export function ConfirmDialog({ ); } + diff --git a/apps/dashboard/src/components/ui/EmptyState.tsx b/apps/dashboard/src/components/ui/EmptyState.tsx index cc922da..d6e8609 100644 --- a/apps/dashboard/src/components/ui/EmptyState.tsx +++ b/apps/dashboard/src/components/ui/EmptyState.tsx @@ -31,3 +31,4 @@ export function EmptyState({ icon: Icon, title, description, action }: EmptyStat ); } + diff --git a/apps/dashboard/src/components/ui/PageHeader.tsx b/apps/dashboard/src/components/ui/PageHeader.tsx index 307fea4..ee72800 100644 --- a/apps/dashboard/src/components/ui/PageHeader.tsx +++ b/apps/dashboard/src/components/ui/PageHeader.tsx @@ -21,3 +21,4 @@ export function PageHeader({ title, description, action }: PageHeaderProps) { ); } + diff --git a/apps/dashboard/src/components/ui/PageSkeleton.tsx b/apps/dashboard/src/components/ui/PageSkeleton.tsx index 4b6ae4a..6361044 100644 --- a/apps/dashboard/src/components/ui/PageSkeleton.tsx +++ b/apps/dashboard/src/components/ui/PageSkeleton.tsx @@ -18,3 +18,4 @@ export function PageSkeleton() { ); } + diff --git a/apps/dashboard/src/components/ui/StatCard.tsx b/apps/dashboard/src/components/ui/StatCard.tsx index a6e6b7c..5ebf291 100644 --- a/apps/dashboard/src/components/ui/StatCard.tsx +++ b/apps/dashboard/src/components/ui/StatCard.tsx @@ -52,3 +52,4 @@ export function StatCard({ label, value, icon: Icon, trend, color = "default" }: ); } + diff --git a/apps/dashboard/src/components/ui/alert-dialog.tsx b/apps/dashboard/src/components/ui/alert-dialog.tsx index 9fe3bd6..fffdce5 100644 --- a/apps/dashboard/src/components/ui/alert-dialog.tsx +++ b/apps/dashboard/src/components/ui/alert-dialog.tsx @@ -110,3 +110,4 @@ export { AlertDialogAction, AlertDialogCancel, }; + diff --git a/apps/dashboard/src/components/ui/badge.tsx b/apps/dashboard/src/components/ui/badge.tsx index 14c0d89..e7f95b3 100644 --- a/apps/dashboard/src/components/ui/badge.tsx +++ b/apps/dashboard/src/components/ui/badge.tsx @@ -31,3 +31,4 @@ function Badge({ className, variant, ...props }: BadgeProps) { } export { Badge, badgeVariants }; + diff --git a/apps/dashboard/src/components/ui/button.tsx b/apps/dashboard/src/components/ui/button.tsx index fb39771..01badb8 100644 --- a/apps/dashboard/src/components/ui/button.tsx +++ b/apps/dashboard/src/components/ui/button.tsx @@ -48,3 +48,4 @@ const Button = React.forwardRef( Button.displayName = "Button"; export { Button, buttonVariants }; + diff --git a/apps/dashboard/src/components/ui/card.tsx b/apps/dashboard/src/components/ui/card.tsx index 7dee2c9..7ac65a0 100644 --- a/apps/dashboard/src/components/ui/card.tsx +++ b/apps/dashboard/src/components/ui/card.tsx @@ -56,3 +56,4 @@ const CardFooter = React.forwardRef( Input.displayName = "Input"; export { Input }; + diff --git a/apps/dashboard/src/components/ui/label.tsx b/apps/dashboard/src/components/ui/label.tsx index ffda790..1dd9b93 100644 --- a/apps/dashboard/src/components/ui/label.tsx +++ b/apps/dashboard/src/components/ui/label.tsx @@ -13,3 +13,5 @@ const Label = React.forwardRef(({ className, ...pr Label.displayName = "Label"; export { Label }; + + diff --git a/apps/dashboard/src/components/ui/popover.tsx b/apps/dashboard/src/components/ui/popover.tsx index f93398e..7395a6a 100644 --- a/apps/dashboard/src/components/ui/popover.tsx +++ b/apps/dashboard/src/components/ui/popover.tsx @@ -24,3 +24,5 @@ const PopoverContent = React.forwardRef< PopoverContent.displayName = PopoverPrimitive.Content.displayName; export { Popover, PopoverTrigger, PopoverContent }; + + diff --git a/apps/dashboard/src/components/ui/progress.tsx b/apps/dashboard/src/components/ui/progress.tsx index b77eb0b..07bc51e 100644 --- a/apps/dashboard/src/components/ui/progress.tsx +++ b/apps/dashboard/src/components/ui/progress.tsx @@ -23,3 +23,4 @@ const Progress = React.forwardRef< Progress.displayName = ProgressPrimitive.Root.displayName; export { Progress }; + diff --git a/apps/dashboard/src/components/ui/scroll-area.tsx b/apps/dashboard/src/components/ui/scroll-area.tsx index f7da044..45f9490 100644 --- a/apps/dashboard/src/components/ui/scroll-area.tsx +++ b/apps/dashboard/src/components/ui/scroll-area.tsx @@ -41,3 +41,5 @@ const ScrollBar = React.forwardRef< ScrollBar.displayName = ScrollAreaPrimitive.ScrollAreaScrollbar.displayName; export { ScrollArea, ScrollBar }; + + diff --git a/apps/dashboard/src/components/ui/select.tsx b/apps/dashboard/src/components/ui/select.tsx index b9e8a74..2c2e05d 100644 --- a/apps/dashboard/src/components/ui/select.tsx +++ b/apps/dashboard/src/components/ui/select.tsx @@ -148,3 +148,5 @@ export { SelectScrollUpButton, SelectScrollDownButton, }; + + diff --git a/apps/dashboard/src/components/ui/separator.tsx b/apps/dashboard/src/components/ui/separator.tsx index 433cfba..b5707e9 100644 --- a/apps/dashboard/src/components/ui/separator.tsx +++ b/apps/dashboard/src/components/ui/separator.tsx @@ -21,3 +21,5 @@ const Separator = React.forwardRef< Separator.displayName = SeparatorPrimitive.Root.displayName; export { Separator }; + + diff --git a/apps/dashboard/src/components/ui/sheet.tsx b/apps/dashboard/src/components/ui/sheet.tsx index 0fd1927..fd01f49 100644 --- a/apps/dashboard/src/components/ui/sheet.tsx +++ b/apps/dashboard/src/components/ui/sheet.tsx @@ -113,3 +113,4 @@ export { SheetTitle, SheetDescription, }; + diff --git a/apps/dashboard/src/components/ui/skeleton.tsx b/apps/dashboard/src/components/ui/skeleton.tsx index 288e424..702c315 100644 --- a/apps/dashboard/src/components/ui/skeleton.tsx +++ b/apps/dashboard/src/components/ui/skeleton.tsx @@ -10,3 +10,4 @@ function Skeleton({ className, ...props }: React.HTMLAttributes) } export { Skeleton }; + diff --git a/apps/dashboard/src/components/ui/switch.tsx b/apps/dashboard/src/components/ui/switch.tsx index b5a576a..250012a 100644 --- a/apps/dashboard/src/components/ui/switch.tsx +++ b/apps/dashboard/src/components/ui/switch.tsx @@ -24,3 +24,5 @@ const Switch = React.forwardRef< Switch.displayName = SwitchPrimitives.Root.displayName; export { Switch }; + + diff --git a/apps/dashboard/src/components/ui/table.tsx b/apps/dashboard/src/components/ui/table.tsx index 9fb87ec..c1900e4 100644 --- a/apps/dashboard/src/components/ui/table.tsx +++ b/apps/dashboard/src/components/ui/table.tsx @@ -102,3 +102,4 @@ const TableCaption = React.forwardRef< TableCaption.displayName = "TableCaption"; export { Table, TableHeader, TableBody, TableFooter, TableHead, TableRow, TableCell, TableCaption }; + diff --git a/apps/dashboard/src/components/ui/tabs.tsx b/apps/dashboard/src/components/ui/tabs.tsx index 5a4624f..56bdbed 100644 --- a/apps/dashboard/src/components/ui/tabs.tsx +++ b/apps/dashboard/src/components/ui/tabs.tsx @@ -50,3 +50,4 @@ const TabsContent = React.forwardRef< TabsContent.displayName = TabsPrimitive.Content.displayName; export { Tabs, TabsList, TabsTrigger, TabsContent }; + diff --git a/apps/dashboard/src/components/ui/textarea.tsx b/apps/dashboard/src/components/ui/textarea.tsx index 3a274d6..1202d87 100644 --- a/apps/dashboard/src/components/ui/textarea.tsx +++ b/apps/dashboard/src/components/ui/textarea.tsx @@ -20,3 +20,5 @@ const Textarea = React.forwardRef( Textarea.displayName = "Textarea"; export { Textarea }; + + diff --git a/apps/dashboard/src/components/ui/tooltip.tsx b/apps/dashboard/src/components/ui/tooltip.tsx index 66d5c32..92dc828 100644 --- a/apps/dashboard/src/components/ui/tooltip.tsx +++ b/apps/dashboard/src/components/ui/tooltip.tsx @@ -25,3 +25,5 @@ const TooltipContent = React.forwardRef< TooltipContent.displayName = TooltipPrimitive.Content.displayName; export { Tooltip, TooltipTrigger, TooltipContent, TooltipProvider }; + +