Skip to content

Commit

Permalink
update loading message
Browse files Browse the repository at this point in the history
  • Loading branch information
Sjesc committed Mar 5, 2023
1 parent 3bc0669 commit fb562c0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ const webR = new WebR({

function App() {
const [loadingMessage, setLoadingMessage] = useState<string | null>(
"Loading WebR..."
"Loading WebR... This might take a few minutes if it is the first time you load this page"
);

const [scripts, setScripts] = useState(0);
Expand Down
2 changes: 1 addition & 1 deletion src/components/Loading.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ const Loading: FC<PropsWithChildren<{}>> = ({ children }) => {
></div>
</div>

<div>{children}</div>
<div style={{ marginTop: "1em" }}>{children}</div>
</div>
);
};
Expand Down

0 comments on commit fb562c0

Please sign in to comment.