We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4e2955d commit 44ac1aaCopy full SHA for 44ac1aa
src/routes/Splash.js
@@ -48,7 +48,7 @@ const Splash = () => {
48
reactSwal.fire(messages.noRemote).then((value) => {
49
let [url, branch] = value.value;
50
// run python entrypoint script
51
- eel.init(url, branch, dirValue)
+ eel.initRepository([url, branch], dirValue)
52
nextPage()
53
})
54
.catch(err => {
@@ -60,7 +60,7 @@ const Splash = () => {
60
...messages.foundRemote,
61
html: `<a onclick="window.open('${url}', '${url}')" href="javascript:void()">${url}</a> <br/> <p>${branch}</p>`,
62
}).then(value => {
63
+ eel.init(dirValue)
64
65
66
}
0 commit comments