Skip to content

Commit

Permalink
fix: fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Pascal Klesse committed Dec 20, 2024
1 parent f9774cf commit 8ace47e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ definePageMeta({
const route = useRoute();
const buildId = ref<string>(route.params.buildId ? (route.params.buildId as string) : '');
const { data: buildData, refresh: refreshBuild } = await useAsyncGetBuildQuery({ id: buildId.value }, null);
const build = computed(() => buildData.value?.getBuild || null);
const build = computed(() => buildData.value || null);
const { pause } = useIntervalFn(() => {
if (build) {
Expand Down

0 comments on commit 8ace47e

Please sign in to comment.