Skip to content

Commit

Permalink
Even better loading indicator
Browse files Browse the repository at this point in the history
  • Loading branch information
N2D4 committed Apr 2, 2024
1 parent b9f12e2 commit a56e74c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/web-demo/src/app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ export default function Home() {
}
}}
>
{!mock ? "Downloading Postgres image..." : !client ? "Connecting to instance..." : queryLoadingCounter > 0 ? "..." : "Run query"}
{!mock ? "Downloading Postgres image... This may take a minute or two." : !client ? "Connecting to instance..." : queryLoadingCounter > 0 ? "..." : "Run query"}
</button>
<pre style={{ maxHeight: 100, overflowY: "scroll", backgroundColor: "rgba(0.5, 0.5, 0.5, 0.05)" }}>
{queryResult}
Expand Down

0 comments on commit a56e74c

Please sign in to comment.