From 83977f85bd378b4bdd5ed4ca8e85c7f58d31bc96 Mon Sep 17 00:00:00 2001 From: Copilot <198982749+Copilot@users.noreply.github.com> Date: Mon, 9 Mar 2026 23:04:18 -0400 Subject: [PATCH] Use filtered fetch in Figma and Linear plugins (#11701) * Initial plan * chore: use filtered fetch in Figma and Linear plugins Co-authored-by: tommoor <380914+tommoor@users.noreply.github.com> --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: tommoor <380914+tommoor@users.noreply.github.com> --- plugins/figma/server/figma.ts | 1 + plugins/linear/server/linear.ts | 1 + 2 files changed, 2 insertions(+) diff --git a/plugins/figma/server/figma.ts b/plugins/figma/server/figma.ts index 77bf85e583..e8803213da 100644 --- a/plugins/figma/server/figma.ts +++ b/plugins/figma/server/figma.ts @@ -1,4 +1,5 @@ import { z } from "zod"; +import fetch from "@server/utils/fetch"; import env from "./env"; import { FigmaUtils } from "../shared/FigmaUtils"; import type { UnfurlSignature } from "@server/types"; diff --git a/plugins/linear/server/linear.ts b/plugins/linear/server/linear.ts index aaee91a106..c8ed497a3b 100644 --- a/plugins/linear/server/linear.ts +++ b/plugins/linear/server/linear.ts @@ -1,5 +1,6 @@ import type { Issue, WorkflowState } from "@linear/sdk"; import { LinearClient } from "@linear/sdk"; +import fetch from "@server/utils/fetch"; import sortBy from "lodash/sortBy"; import { z } from "zod"; import type { IntegrationType } from "@shared/types";