Skip to content

Commit

Permalink
Clean up
Browse files Browse the repository at this point in the history
  • Loading branch information
fatfingers23 committed Apr 20, 2024
1 parent 09b6859 commit 1bc6549
Showing 1 changed file with 2 additions and 13 deletions.
Original file line number Diff line number Diff line change
@@ -1,11 +1,8 @@
<script setup lang="ts">
import TrackscapeApiClient from "@/services/TrackscapeApiClient";
import type {ClanDetail, ClanMateCollectionLogTotalsView} from "@/services/TrackscapeApiTypes";
import { type PropType, reactive } from 'vue'
import type {ClanDetail} from "@/services/TrackscapeApiTypes";
import { type PropType } from 'vue'
import {useRoute} from "vue-router";
import {ref} from "vue";
import DataTable from "@/components/General/DataTable.vue";
import SkeletonTable from "@/components/General/SkeletonTable.vue";
import BroadcastList from '@/components/BroadcastList.vue'
Expand All @@ -17,19 +14,11 @@ const props = defineProps({
}
})
let clan = ref<ClanDetail>();
if (props.clanDetail) {
clanId.value= props.clanDetail.id;
// callEndpoint(props.clanDetail.id);
} else {
const route = useRoute();
clanId.value = route.params.clanId as string;
// callEndpoint(clanId);
}
Expand Down

0 comments on commit 1bc6549

Please sign in to comment.