From ec73e7fa860da7a926c9ff767f5444861417f2c6 Mon Sep 17 00:00:00 2001 From: Robin Date: Wed, 5 Mar 2025 09:18:31 -0500 Subject: [PATCH] Use the configured brand name in OpenGraph tags Overlooked some of these when reviewing https://github.com/element-hq/element-call/pull/3006. --- public/index.html | 10 +++++----- vite.config.js | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/public/index.html b/public/index.html index bf26d8ec..579f5a00 100644 --- a/public/index.html +++ b/public/index.html @@ -8,26 +8,26 @@ name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0" /> - <%- title %> + <%- brand %> - + - + diff --git a/vite.config.js b/vite.config.js index 4c9871a2..8f067357 100644 --- a/vite.config.js +++ b/vite.config.js @@ -29,7 +29,7 @@ export default defineConfig(({ mode }) => { }), htmlTemplate.default({ data: { - title: env.VITE_PRODUCT_NAME || "Element Call", + brand: env.VITE_PRODUCT_NAME || "Element Call", }, }),