roker15
roker15
version detail ``` "@supabase/auth-helpers-nextjs": "^0.4.0-next.3", "@supabase/auth-helpers-react": "^0.3.0-next.2", "@supabase/supabase-js": "^2.0.0-rc.10", ``` in `_app.tsx` ``` `const [supabaseClient] = useState(() => createBrowserSupabaseClient());` ...... ``` In other files i am doing following with not...
``` const { data, error } = await supabase .from('messages') .select('*, users!inner(*)') .eq('users.username', 'Jane') ``` this shows Type error at `users.username`
Was experimenting old project with Supabase-V2 Typing. Unfortunately stuck with Error in database.ts file which is database types generated by CLI tool. Here is the error produced ``` ./lib/database.ts Error:...
Here is [Example link](https://supabase.com/docs/reference/javascript/select#:~:text=table%20is%20not-,filtered,-out.) from supabase docs. ``` const { data, error } = await supabase .from('cities') .select('name, countries(*)') .eq('countries.name', 'Estonia') ``` In above example **`countries.name`** shows error in types....
Currently i can print pdf from a suneditor, But i want to combine content from two suneditors from my data base and print to a single file.
I had important issue that is preventing me from using latest suneditor. Issue is perhaps not due to `suneditor `package but due to `suneditor react` package. See here for detail...
Provide automatic capitalization of first letter of sentence in following cases - 1. List items, 2. Paragraphs. 3. New sentences.