Skip to content

Commit

Permalink
refactor: remove logs
Browse files Browse the repository at this point in the history
  • Loading branch information
yurimutti committed Nov 8, 2024
1 parent e97c4c3 commit 9a6ac0c
Showing 1 changed file with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,6 @@ const chakra = Chakra_Petch({ weight: '400', subsets: ['latin'] });
export const GeneralPreviewComponent: FC<{maximumCharacters?: number}> = (props) => {
const { value: topValue, integration } = useIntegration();

console.log("topValue, integration", topValue, integration )

const mediaDir = useMediaDirectory();
const newValues = useFormatting(topValue, {
removeMarkdown: true,
Expand All @@ -23,7 +21,7 @@ export const GeneralPreviewComponent: FC<{maximumCharacters?: number}> = (props)

return (
<div className={clsx('w-full md:w-[555px] px-[16px]')}>
<div className="w-full h-full relative flex flex-col">
<div className="relative flex flex-col w-full h-full">
{newValues.map((value, index) => (
<div
key={`tweet_${index}`}
Expand Down

0 comments on commit 9a6ac0c

Please sign in to comment.