diff --git a/package.json b/package.json index 09b15bd..4e4859f 100644 --- a/package.json +++ b/package.json @@ -12,7 +12,7 @@ "deploy:testnet": "npm run build; alem deploy --network testnet" }, "dependencies": { - "alem": "^1.0.0-beta.14" + "alem": "^1.0.0-beta.15" }, "devDependencies": { "@types/styled-components": "^5.1.26", diff --git a/src/components/ContactItems/index.tsx b/src/components/ContactItems/index.tsx index 2cfd697..95d96b7 100644 --- a/src/components/ContactItems/index.tsx +++ b/src/components/ContactItems/index.tsx @@ -9,7 +9,6 @@ type Props = { onSelect?: (profileInfo: SimpleProfileInfo) => void; }; -// TODO: Criar uma forma no Router de deixar paginas pre-renderizadas const ContactItems = ({ accountIds, onSelect }: Props) => { const [items, setItems] = useState([]); const [ready, setReady] = useState(false); diff --git a/src/index.tsx b/src/index.tsx index 9403e46..1fa068d 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -13,7 +13,6 @@ const App = () => { useEffect(() => { // clean up storage if (!context.accountId) { - console.log("Shoud i go?"); cleanUpChatList(); } }, [context.accountId]);