Skip to content

Commit

Permalink
fix shortcode collection
Browse files Browse the repository at this point in the history
  • Loading branch information
zapaz committed Apr 26, 2023
1 parent cb7721f commit 12fe970
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion svelte/helpers/shortcode.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ const shortcodeOpenSkyNft = (nft: NftType): string =>
nft
)}[/kredeum_opensky]`;

const shortcodeOpenSky = (nft: NftType, coll: boolean): string =>
const shortcodeOpenSky = (nft: NftType, coll = false): string =>
coll ? shortcodeOpenSkyCollection(nft) : shortcodeOpenSkyNft(nft);

export { shortcodeOpenSky, shortcodeOpenSkyNft, shortcodeOpenSkyCollection };

0 comments on commit 12fe970

Please sign in to comment.