Skip to content

Commit 3c7803e

Browse files
authored
bug: fix ext link referencing (#66)
1 parent 66ac1a8 commit 3c7803e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

app/components/ToolDetailModel.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -275,7 +275,7 @@ export function ToolDetailModal({
275275
<div className="flex justify-end mt-6">
276276
<Button
277277
className="bg-[#17412C] hover:bg-[#143728] w-full rounded-full"
278-
onClick={() => window.open(tool.link || "#", "_blank")}
278+
onClick={() => window.open(`https://${tool.link}` || "#", "_blank")}
279279
>
280280
Visit website
281281
</Button>

0 commit comments

Comments
 (0)