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> <InfoSection>
<InfoSectionTitle>URL</InfoSectionTitle> <InfoSectionTitle>URL</InfoSectionTitle>
<InfoSectionContent> <InfoSectionContent>
{resource.wildcard ? (
<span>{fullUrl}</span>
) : (
<CopyToClipboard <CopyToClipboard
text={fullUrl} text={fullUrl}
isLink={true} isLink={true}
/> />
)}
</InfoSectionContent> </InfoSectionContent>
</InfoSection> </InfoSection>
<InfoSection> <InfoSection>