Checklists

Loading…

← Back
Permanently delete this checklist?
Settings

Checklist Template

Edit the default items used when creating a new checklist. Existing checklists are unaffected.

Loading template…

Supabase Connection

Override the baked-in credentials if you move to a different project.

First-time Setup

Run this SQL in Supabase if the template editor shows an error.

create table if not exists templates (
  id text primary key default 'default',
  sections jsonb not null default '[]'::jsonb,
  updated_at timestamptz default now()
);
Loading…