File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -75,11 +75,11 @@ const Auth: React.FC = () => {
7575 { loading ? 'Loading...' : isSignUp ? 'Sign Up' : 'Sign In' }
7676 </ button >
7777 </ form >
78-
78+
7979 { message && < p className = "message" > { message } </ p > }
80-
80+
8181 < div className = "demo-section" >
82- < button
82+ < button
8383 type = "button"
8484 className = "demo-button"
8585 onClick = { async ( ) => {
@@ -110,11 +110,11 @@ const Auth: React.FC = () => {
110110 </ button >
111111 < p className = "demo-note" > Experience FlairAi with our demo account</ p >
112112 </ div >
113-
113+
114114 < p >
115115 { isSignUp ? 'Already have an account?' : "Don't have an account?" } { ' ' }
116- < button
117- type = "button"
116+ < button
117+ type = "button"
118118 className = "link-button"
119119 onClick = { ( ) => setIsSignUp ( ! isSignUp ) }
120120 >
Original file line number Diff line number Diff line change 11
2- import { createClient } from '@supabase/supabase-js'
2+ import { createClient } from '@supabase/supabase-js' ;
33
44const supabaseUrl = import . meta. env . VITE_SUPABASE_URL
55const supabaseAnonKey = import . meta. env . VITE_SUPABASE_ANON_KEY
66
7- console . log ( 'Supabase config:' , {
8- url : supabaseUrl ? 'Configured' : 'Missing' ,
9- key : supabaseAnonKey ? 'Configured' : 'Missing'
7+ console . log ( 'Supabase config:' , {
8+ url : supabaseUrl ? 'Configured' : 'Missing' ,
9+ key : supabaseAnonKey ? 'Configured' : 'Missing'
1010} ) ;
1111
1212if ( ! supabaseUrl || ! supabaseAnonKey ) {
You can’t perform that action at this time.
0 commit comments