Skip to content

Commit f817250

Browse files
committed
fix: small reject button
1 parent 99a26c5 commit f817250

File tree

1 file changed

+1
-8
lines changed

1 file changed

+1
-8
lines changed

frontend/app/components/consent/ConsentCard.vue

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -66,13 +66,6 @@ const title = computed(() => {
6666
return props.consent.title
6767
})
6868
69-
const body = computed(() => {
70-
if (props.consent.__typename == 'UserConsent') {
71-
return props.consent.consent.body.html
72-
}
73-
return props.consent.body.html
74-
})
75-
7669
const shortText = computed(() => {
7770
if (props.consent.__typename == 'UserConsent') {
7871
return props.consent.consent.shortText
@@ -157,7 +150,7 @@ const changing = ref(false)
157150
</DesignButton>
158151
<DesignButton
159152
variant="tertiary"
160-
size="large"
153+
size="small"
161154
class="w-full"
162155
@click="handleReject"
163156
>

0 commit comments

Comments
 (0)