Skip to content

Commit

Permalink
alter dandi endpoint call
Browse files Browse the repository at this point in the history
  • Loading branch information
CodyCBakerPhD committed May 24, 2024
1 parent 518bc10 commit 3620d65
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/electron/renderer/src/server/globals.ts
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ export const activateServer = () => {
export const serverGlobals = {
species: new Promise((res, rej) => {
onServerOpen(() => {
fetch(new URL("get-recommended-species", baseUrl))
fetch(new URL("dandi/get-recommended-species", baseUrl))
.then((res) => res.json())
.then((species) => {
res(species)
Expand Down

0 comments on commit 3620d65

Please sign in to comment.