From 1c1514a4215aa3ff5fa155af920ed8a4d4822212 Mon Sep 17 00:00:00 2001 From: WithoutPants <53250216+WithoutPants@users.noreply.github.com> Date: Thu, 31 Oct 2024 14:23:55 +1100 Subject: [PATCH] Fix UI compile error --- ui/v2.5/src/components/Shared/StashID.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/v2.5/src/components/Shared/StashID.tsx b/ui/v2.5/src/components/Shared/StashID.tsx index 14bcef6882c..00bddf58edf 100644 --- a/ui/v2.5/src/components/Shared/StashID.tsx +++ b/ui/v2.5/src/components/Shared/StashID.tsx @@ -7,7 +7,7 @@ import { ExternalLink } from "./ExternalLink"; export type LinkType = "performers" | "scenes" | "studios"; export const StashIDPill: React.FC<{ - stashID: StashId; + stashID: Pick; linkType: LinkType; }> = ({ stashID, linkType }) => { const { configuration } = React.useContext(ConfigurationContext);