Skip to content

Commit

Permalink
Remove commmented-out and extraneous code
Browse files Browse the repository at this point in the history
  • Loading branch information
nbarnabee committed Mar 13, 2023
1 parent 5da897f commit b574214
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 6 deletions.
5 changes: 0 additions & 5 deletions src/components/Home.vue
Original file line number Diff line number Diff line change
@@ -1,16 +1,11 @@
<script setup>
// import { stringify } from "querystring";
// import { ref } from "vue";
const props = defineProps({
toolName: String,
toolDescription: String,
missingField: String,
toolURL: String,
isError: Boolean,
});
// const currentTaskIndex = ref(0);
// const currentTask = ref(null);
</script>
<template>
<v-container
Expand Down
1 change: 0 additions & 1 deletion src/views/HomeView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ const props = defineProps({
onMounted(async () => {
try {
tasks.value = await getTasks();
currentTask.value = tasks.value[currentTaskIndex.value];
} catch (error) {
isError.value = true;
console.log(error);
Expand Down

0 comments on commit b574214

Please sign in to comment.