final: sync production version
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
/*@typescript-eslint/no-explicit-any*/
|
||||
|
||||
import { IMAGE_BASE_URL } from "@/components/main/BaseUrl";
|
||||
import { IMAGE_BASE_URL, buildStorageUrl } from "@/components/main/BaseUrl";
|
||||
import Head from "next/head";
|
||||
|
||||
type SEOProps = {
|
||||
@@ -24,7 +24,7 @@ const SEO: React.FC<SEOProps> = ({ type, data }) => {
|
||||
case "user":
|
||||
title = `${data.first_name} ${data.last_name} `;
|
||||
description = `${data.bio} - ${data.user_name} - ${data.expertise}`;
|
||||
image = `${IMAGE_BASE_URL}${data.profile_image}`;
|
||||
image = buildStorageUrl(data.profile_image);
|
||||
break;
|
||||
|
||||
case "billboard":
|
||||
|
||||
Reference in New Issue
Block a user