Write unit test for Rooms, Users page components

This commit is contained in:
2023-11-26 21:42:55 +07:00
parent d15c81aa00
commit 7fd9190ed2
15 changed files with 180 additions and 8 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
const DEFAULT_SORT_BY = 'id';
const DEFAULT_ORDER_BY = 'asc';
const supabaseUrl = 'https://pjqujsjzzdrlrgqbxepe.supabase.co'
const supabaseKey = import.meta.env.VITE_SUPABASE_KEY
const supabaseKey = process.env.VITE_SUPABASE_KEY
export { DEFAULT_SORT_BY, DEFAULT_ORDER_BY, supabaseKey, supabaseUrl };