Enable cloud sync - quotes currently save in this browser only. Connect Supabase so all team members' quotes sync to one place.
Connect Supabase
Free cloud database so all team members' quotes sync in real time and you see everyone's logs in one place. supabase.com →
1
Sign up free at supabase.com and create a new project (takes 2 min).
2
Open SQL Editor, paste & run this:CREATE TABLE td_storage (key text PRIMARY KEY, value text, operator text, updated_at timestamptz DEFAULT now()); ALTER TABLE td_storage ENABLE ROW LEVEL SECURITY; CREATE POLICY "allow all" ON td_storage FOR ALL USING (true) WITH CHECK (true);
3
Open Project Settings → API. Copy the Project URL and the anon public key.
Each team member opens this same HTML, enters their own name + the same URL/Key once. Their quotes appear in your logs.
Loading Quotation CRM...