Skip to content

Commit 7fbe0e0

Browse files
fix approved photo urls
1 parent feab18f commit 7fbe0e0

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/photo-booth/src/views/Printing.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323

2424
<!-- IMAGE -->
2525
<div class="image-wrapper">
26-
<img :src="demo.selectedPhoto" class="photo" />
26+
<img :src="demo.approvedPhoto" class="photo" />
2727
</div>
2828

2929
<!-- FOOTER -->
@@ -71,7 +71,7 @@ onBeforeUnmount(() => {
7171
GUARD
7272
----------------------------------------- */
7373
onMounted(() => {
74-
if (!demo.selectedPhoto) {
74+
if (!demo.approvedPhoto) {
7575
router.push("/result");
7676
return;
7777
}

0 commit comments

Comments
 (0)