fix: use APP_TITLE to refer to app profile in twitter association screen (#50)

This commit is contained in:
r1oga
2022-10-26 20:02:52 +02:00
committed by GitHub
parent f64888db98
commit 14f41b0ce7
2 changed files with 2 additions and 2 deletions

View File

@@ -309,7 +309,7 @@ function VerifyView(props: {
<div className="text-xl font-semibold">Make a verification tweet</div>
</div>
<div className="my-4 text-center">
{`Associate your Austism profile with ${twitterAuth?.username} by making a tweet!`}
{`Associate your ${process.env.APP_TITLE} profile with ${twitterAuth?.username} by making a tweet!`}
</div>
<div className="my-4">
<div className="border rounded-xl m-4 p-4 flex flex-row flex-nowrap">

View File

@@ -20,7 +20,7 @@ const envPlugin = new webpack.EnvironmentPlugin({
ARB_REGISTRAR: '',
ARB_EXPLORER: '',
GUN_PEERS: [],
APP_TITLE: '',
APP_TITLE: 'Zkitter',
APP_LOGO: '',
});