Skip to content

Commit

Permalink
Reintroduce details for 'tag' and 'git' origins
Browse files Browse the repository at this point in the history
  • Loading branch information
rvanasa committed Sep 7, 2023
1 parent 8ad68e8 commit c021fe7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ async function fetchFromUrlParams(
};
await dispatch({
type: "setOrigin",
payload: { origin: "playground:git" },
payload: { origin: `playground:git:${git}` },
});
return await worker.fetchGithub(repo);
}
Expand Down Expand Up @@ -147,7 +147,7 @@ async function fetchFromUrlParams(
}
await dispatch({
type: "setOrigin",
payload: { origin: "playground:tag" },
payload: { origin: `playground:tag:${tag}` },
});
return files;
}
Expand Down

0 comments on commit c021fe7

Please sign in to comment.