diff --git a/premium/conversations/components/claim.vue b/premium/conversations/components/claim.vue index 29cd0f8a99..2fdabddb51 100644 --- a/premium/conversations/components/claim.vue +++ b/premium/conversations/components/claim.vue @@ -20,7 +20,7 @@ class="rounded-lg flex items-center justify-center h-full m-6 md:m-10 border border-transparent hover:opacity-80 hover:cursor-pointer shadow-md hover:shadow-lg" :style="{ backgroundColor: - tenant.theme && tenant.theme.bgNav !== '#140505' + tenant.theme && tenant.theme.bgNav && tenant.logoUrl ? tenant.theme.bgNav : tenant.cardColor ? tenant.cardColor @@ -49,8 +49,7 @@ import topHeader from "~~/components/topHeader.vue"; import mainSection from "~~/components/mainSection.vue"; import { getBgColor, getTextColor } from "../helpers/avatarColors"; - -import _ from "lodash"; +import makeStyles from "~~/helpers/makeStyles"; import MainCta from "~~/components/mainCta.vue"; export default defineComponent({ diff --git a/premium/conversations/components/conversation.vue b/premium/conversations/components/conversation.vue index 32645c9def..0e0ff0c407 100644 --- a/premium/conversations/components/conversation.vue +++ b/premium/conversations/components/conversation.vue @@ -119,8 +119,8 @@ class="min-w-0 flex-1 pt-1.5 flex justify-between space-x-4" >
-

@@ -188,17 +188,12 @@