From 884b85ce2533f6811b0d8efb59a1392da14e9c3b Mon Sep 17 00:00:00 2001 From: Alex Gleason Date: Fri, 18 Apr 2025 15:22:23 -0500 Subject: [PATCH] Add comments to LoginDialog and SignupDialog --- src/components/auth/LoginDialog.tsx | 3 +++ src/components/auth/SignupDialog.tsx | 3 +++ 2 files changed, 6 insertions(+) diff --git a/src/components/auth/LoginDialog.tsx b/src/components/auth/LoginDialog.tsx index 02be656..bd45ca1 100644 --- a/src/components/auth/LoginDialog.tsx +++ b/src/components/auth/LoginDialog.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, { useEffect, useRef, useState } from 'react'; import { Shield, Upload } from 'lucide-react'; import { Button } from '@/components/ui/button.tsx'; diff --git a/src/components/auth/SignupDialog.tsx b/src/components/auth/SignupDialog.tsx index bbb8160..bbe8ca5 100644 --- a/src/components/auth/SignupDialog.tsx +++ b/src/components/auth/SignupDialog.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 { Download, Key } from 'lucide-react'; import { Button } from '@/components/ui/button.tsx';