Skip to content

Commit

Permalink
removed fetch copa versions for later update
Browse files Browse the repository at this point in the history
  • Loading branch information
jgrer committed Jun 20, 2024
1 parent 9e26fa2 commit 59abe9d
Showing 1 changed file with 0 additions and 10 deletions.
10 changes: 0 additions & 10 deletions ui/src/app.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -45,10 +45,6 @@ export function App() {
const [showCopaOutputModal, setShowCopaOutputModal] = useState(false);
const [showCommandLine, setShowCommandLine] = useState(false);

useEffect(() => {
fetchCopaVersions();
}, []);

const patchImage = () => {
setShowPreload(false);
setShowLoading(true);
Expand All @@ -74,12 +70,6 @@ export function App() {
}
}

async function fetchCopaVersions() {
const response = await fetch("https://api.github.com/repos/project-copacetic/copacetic/releases");
const data = await response.json();
}


async function triggerCopa() {
let stdout = "";
let stderr = "";
Expand Down

0 comments on commit 59abe9d

Please sign in to comment.