Skip to content
This repository was archived by the owner on Feb 27, 2024. It is now read-only.

Commit 348a8eb

Browse files
committed
removing isInteger check
1 parent 8aa4c4c commit 348a8eb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

components/atoms/TwitterEmbed/TwitterEmbed.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ export default function TwitterEmbed({className, caption, url}) {
2020

2121
return (
2222
<>
23-
{!!tweetId && Number.isInteger(tweetId) && (
23+
{!!tweetId && (
2424
<div className={cn(styles.twitterEmbed, className)}>
2525
<TwitterTweetEmbed tweetId={tweetId} />
2626
{!!caption && (

0 commit comments

Comments
 (0)