Skip to content

Commit

Permalink
Fix UI compile error
Browse files Browse the repository at this point in the history
  • Loading branch information
WithoutPants committed Oct 31, 2024
1 parent ec2a962 commit 1c1514a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ui/v2.5/src/components/Shared/StashID.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import { ExternalLink } from "./ExternalLink";
export type LinkType = "performers" | "scenes" | "studios";

export const StashIDPill: React.FC<{
stashID: StashId;
stashID: Pick<StashId, "endpoint" | "stash_id">;
linkType: LinkType;
}> = ({ stashID, linkType }) => {
const { configuration } = React.useContext(ConfigurationContext);
Expand Down

0 comments on commit 1c1514a

Please sign in to comment.