Skip to content

Commit

Permalink
Merge pull request #148 from valory-xyz/mohan/fix-install-dependency-…
Browse files Browse the repository at this point in the history
…message

fix: lost the 'installing dependencies' message on all loads.
  • Loading branch information
mohandast52 authored May 29, 2024
2 parents 48d7e81 + c869e15 commit 6217b24
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions electron/loading/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,12 @@
const { ipcRenderer } = require("electron");
ipcRenderer.on("response", (event, arg) => {
if (typeof arg === "string") {
if (arg.includes(/Installing/)) {
if (arg.includes("Installing")) {
document.getElementById("text").innerHTML =
`Installing app dependencies...
<br />
This might take a while`;
} else if (arg.includes(/Development mode/)) {
} else if (arg.includes("Development")) {
document.getElementById("text").innerHTML = arg;
}
}
Expand Down

0 comments on commit 6217b24

Please sign in to comment.