From 3affb5881ad62ec6d1870f97f696a4160acdc379 Mon Sep 17 00:00:00 2001 From: Simon Loir Date: Sat, 25 Oct 2025 07:27:49 +0200 Subject: [PATCH] fix(supabase): remove trailing comma in JSON (#466) --- blueprints/supabase/template.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/blueprints/supabase/template.toml b/blueprints/supabase/template.toml index 4865fe5d..9f35f79c 100644 --- a/blueprints/supabase/template.toml +++ b/blueprints/supabase/template.toml @@ -10,13 +10,13 @@ container_name_prefix = "${APP_NAME}-supabase" anon_key_payload = """{ "role": "anon", "iss": "supabase", - "exp": ${timestamps:2030-01-01T00:00:00Z}, + "exp": ${timestamps:2030-01-01T00:00:00Z} } """ service_role_key_payload = """{ "role": "service_role", "iss": "supabase", - "exp": ${timestamps:2030-01-01T00:00:00Z}, + "exp": ${timestamps:2030-01-01T00:00:00Z} } """