Skip to content

Commit

Permalink
chore: set initial state to true to avoid ui glitch
Browse files Browse the repository at this point in the history
  • Loading branch information
pavanjoshi914 committed Dec 11, 2024
1 parent 76d5c1e commit f581429
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/screens/Home/DefaultView/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ const DefaultView: FC<Props> = (props) => {
const [currentAccount, setCurrentAccount] = useState<GetAccountRes>();
const [nostrPublicKey, setNostrPublicKey] = useState("");
const [seenSharedNodeBanner, setSeenSharedNodeBanner] =
useState<boolean>(false);
useState<boolean>(true);

const { transactions, isLoadingTransactions, loadTransactions } =
useTransactions();
Expand Down

0 comments on commit f581429

Please sign in to comment.