Dont allow clicking the wildcard resource link

This commit is contained in:
Owen
2026-04-28 11:21:32 -07:00
parent 592ca64253
commit 8783c47a3c

View File

@@ -40,10 +40,14 @@ export default function ResourceInfoBox({}: ResourceInfoBoxType) {
<InfoSection>
<InfoSectionTitle>URL</InfoSectionTitle>
<InfoSectionContent>
<CopyToClipboard
text={fullUrl}
isLink={true}
/>
{resource.wildcard ? (
<span>{fullUrl}</span>
) : (
<CopyToClipboard
text={fullUrl}
isLink={true}
/>
)}
</InfoSectionContent>
</InfoSection>
<InfoSection>