From 49a64a6bcca312ce59378ec1cf04f9fb6313bf98 Mon Sep 17 00:00:00 2001 From: "gpt-engineer-app[bot]" <159125892+gpt-engineer-app[bot]@users.noreply.github.com> Date: Tue, 21 Oct 2025 19:37:52 +0000 Subject: [PATCH] Fix: Update Deno std import path --- supabase/functions/manage-moderator-topic/index.ts | 2 +- supabase/functions/notify-user-submission-status/index.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/supabase/functions/manage-moderator-topic/index.ts b/supabase/functions/manage-moderator-topic/index.ts index 5a99ae2e..4de48bdb 100644 --- a/supabase/functions/manage-moderator-topic/index.ts +++ b/supabase/functions/manage-moderator-topic/index.ts @@ -1,4 +1,4 @@ -import { serve } from "https://deno.land/std@0.168.0/http/server.ts"; +import { serve } from "https://deno.land/std@0.190.0/http/server.ts"; import { createClient } from "https://esm.sh/@supabase/supabase-js@2.57.4"; import { Novu } from "npm:@novu/api@1.6.0"; import { startRequest, endRequest } from "../_shared/logger.ts"; diff --git a/supabase/functions/notify-user-submission-status/index.ts b/supabase/functions/notify-user-submission-status/index.ts index beb14dc6..110ed256 100644 --- a/supabase/functions/notify-user-submission-status/index.ts +++ b/supabase/functions/notify-user-submission-status/index.ts @@ -1,4 +1,4 @@ -import { serve } from "https://deno.land/std@0.168.0/http/server.ts"; +import { serve } from "https://deno.land/std@0.190.0/http/server.ts"; import { createClient } from "https://esm.sh/@supabase/supabase-js@2.57.4"; import { startRequest, endRequest } from "../_shared/logger.ts";