diff --git a/packages/ui/src/components/collectibles/native/collectible-html.native.tsx b/packages/ui/src/components/collectibles/native/collectible-html.native.tsx index 01c1a3823..ee763c9fa 100644 --- a/packages/ui/src/components/collectibles/native/collectible-html.native.tsx +++ b/packages/ui/src/components/collectibles/native/collectible-html.native.tsx @@ -1,6 +1,5 @@ import { WebView } from 'react-native-webview'; -// import { Box } from '../../../../native'; import { CollectibleCardLayout } from './collectible-card-layout.native'; interface CollectibleHtmlProps { @@ -11,7 +10,6 @@ export function CollectibleHtml({ src }: CollectibleHtmlProps) { return ( - {/* */} ); } diff --git a/packages/ui/src/components/collectibles/native/collectible-text.native.tsx b/packages/ui/src/components/collectibles/native/collectible-text.native.tsx index 07670e147..e111b2805 100644 --- a/packages/ui/src/components/collectibles/native/collectible-text.native.tsx +++ b/packages/ui/src/components/collectibles/native/collectible-text.native.tsx @@ -1,6 +1,7 @@ import { useEffect, useState } from 'react'; -// import { sanitize } from 'dompurify'; +import { sanitize } from 'dompurify'; + import { Text } from '../../../../native'; import { CollectibleCardLayout } from './collectible-card-layout.native'; @@ -29,8 +30,7 @@ export function CollectibleText({ src }: CollectibleTextProps) { return ( - {/* {content ? sanitize(content) : ''} */} - {content} + {content ? sanitize(content) : ''} );