We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e9652e1 commit e01a49bCopy full SHA for e01a49b
src/components/NavColab.vue
@@ -196,11 +196,11 @@ export default {
196
197
var nbUid = uuidv4()
198
var nbName = 'pytorch-ignite-notebook.ipynb'
199
- var repoOwner = `${process.env.VUE_APP_GH_USER}`
200
- var repo = `${process.env.VUE_APP_GH_REPO}`
+ var repoOwner = process.env.VUE_APP_GH_USER
+ var repo = process.env.VUE_APP_GH_REPO
201
202
const octokit = new Octokit({
203
- auth: `${process.env.VUE_APP_GH_TOKEN}`
+ auth: process.env.VUE_APP_GH_TOKEN
204
})
205
const response = octokit.request(
206
'PUT /repos/{owner}/{repo}/contents/{path}',
0 commit comments