Skip to content

Commit

Permalink
fix(fileStorage): fix file path
Browse files Browse the repository at this point in the history
  • Loading branch information
kishore03109 committed Oct 3, 2023
1 parent 613ec1a commit cf91a17
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/routes/fileStorage.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,9 @@ function getRepoNameFromId(id: string) {
function getStagingUrlFromId(repoName: string) {
return new Promise<string>((resolve) => {
setTimeout(() => {
resolve("staging-lite.d29mduhmdpzk5f.amplifyapp.com")
resolve(
"gitless-and-assetless-staging-lite.d29mduhmdpzk5f.amplifyapp.com"
)
}, 1000)
})
}
Expand Down

0 comments on commit cf91a17

Please sign in to comment.