Skip to content

Commit

Permalink
upd
Browse files Browse the repository at this point in the history
  • Loading branch information
progof committed Nov 8, 2024
1 parent 6c81104 commit bdef4f9
Showing 1 changed file with 0 additions and 7 deletions.
Original file line number Diff line number Diff line change
@@ -1,20 +1,13 @@
<script setup lang="ts">
import { getMeQueryOptions } from "@/services/user.service";
import { useQuery } from "@tanstack/vue-query";
import { categoriesQuery } from "@/services/dayquest/category.service";
import DiamondIcon from "@/assets/icons/diamond.svg?component";
import StarIcon from "@/assets/icons/star.svg?component";
import { Progress } from "@/components/ui/progress";
import { computed } from "vue";
const { data: user } = useQuery(getMeQueryOptions);
const { data: categories } = useQuery({
...categoriesQuery,
enabled: true,
});
const baseLevelScore = 8;
const nextLevelScore = computed(() => {
Expand Down

0 comments on commit bdef4f9

Please sign in to comment.