Skip to content

Commit

Permalink
clean code
Browse files Browse the repository at this point in the history
  • Loading branch information
wpdas committed Apr 10, 2024
1 parent ef2f4d9 commit f66dbe6
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
1 change: 0 additions & 1 deletion src/components/ContactItems/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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<SimpleProfileInfo[]>([]);
const [ready, setReady] = useState(false);
Expand Down
1 change: 0 additions & 1 deletion src/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ const App = () => {
useEffect(() => {
// clean up storage
if (!context.accountId) {
console.log("Shoud i go?");
cleanUpChatList();
}
}, [context.accountId]);
Expand Down

0 comments on commit f66dbe6

Please sign in to comment.