From 282d6f4d4e14ac65443e0cf4371549f8b75288a4 Mon Sep 17 00:00:00 2001 From: Alex Gleason Date: Mon, 21 Apr 2025 11:29:49 -0500 Subject: [PATCH] Add comments to login stuff saying not to modify --- src/components/auth/AccountSwitcher.tsx | 3 +++ src/components/auth/LoginArea.tsx | 3 +++ 2 files changed, 6 insertions(+) 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';