diff --git a/src/components/auth/AccountSwitcher.tsx b/src/components/auth/AccountSwitcher.tsx index c271538..ede15ad 100644 --- a/src/components/auth/AccountSwitcher.tsx +++ b/src/components/auth/AccountSwitcher.tsx @@ -1,3 +1,6 @@ +// NOTE: This file is stable and usually should not be modified. +// It is important that all functionality in this file is preserved, and should only be modified if explicitly requested. + import React from 'react'; import { ChevronDown, LogOut, UserPlus } from 'lucide-react'; import { diff --git a/src/components/auth/LoginArea.tsx b/src/components/auth/LoginArea.tsx index a642bf4..4a9d1fe 100644 --- a/src/components/auth/LoginArea.tsx +++ b/src/components/auth/LoginArea.tsx @@ -1,3 +1,6 @@ +// NOTE: This file is stable and usually should not be modified. +// It is important that all functionality in this file is preserved, and should only be modified if explicitly requested. + import React, { useState } from 'react'; import { User } from 'lucide-react'; import { Button } from '@/components/ui/button.tsx';