mirror of
https://github.com/OpenSignLabs/OpenSign.git
synced 2026-09-04 16:58:05 +02:00
fix: Adapter prototype don't match expected prototype during fix: drive get crash if signer array is null
22 lines
473 B
JavaScript
22 lines
473 B
JavaScript
import React from "react";
|
|
import { Helmet } from "react-helmet";
|
|
|
|
function Title({ title, drive }) {
|
|
const appName =
|
|
"OpenSign™";
|
|
return (
|
|
<Helmet>
|
|
<title>{drive ? title : `${title} - ${appName}`}</title>
|
|
<meta name="description" content={`${title} - ${appName}`} />
|
|
<link
|
|
rel="icon"
|
|
type="image/png"
|
|
href={localStorage.getItem("fev_Icon")}
|
|
sizes="40x40"
|
|
/>
|
|
</Helmet>
|
|
);
|
|
}
|
|
|
|
export default Title;
|