refactor(authentication): remove supabase key from example
Some checks failed
continuous-integration/drone/pr Build is failing

This commit is contained in:
Hugo Pointcheval 2024-03-30 17:16:50 +01:00
parent 7e4f04026f
commit 57e6da881a
Signed by: hugo
SSH Key Fingerprint: SHA256:ZtyWUBpqF/1z9x7Y4vqzeq8kQBQPNJjm2qBVmnnj6SU

View File

@ -22,9 +22,7 @@ import 'package:wyatt_authentication_example/app.dart';
import 'package:wyatt_authentication_supabase/wyatt_authentication_supabase.dart';
const supabaseUrl = 'https://yarkjotsulnccxdkztiv.supabase.co';
// const supabaseKey = String.fromEnvironment('SUPABASE_KEY');
const supabaseKey =
'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJzdXBhYmFzZSIsInJlZiI6Inlhcmtqb3RzdWxuY2N4ZGt6dGl2Iiwicm9sZSI6ImFub24iLCJpYXQiOjE3MTE2NDc0MDEsImV4cCI6MjAyNzIyMzQwMX0.mxvcp2oZrKRxtzhgjasoTYP7YNcTWdLOY6_B8ftgWbk';
const supabaseKey = String.fromEnvironment('SUPABASE_KEY');
Future<void> main(List<String> args) async {
WidgetsFlutterBinding.ensureInitialized();