Fixed lint and warnings

This commit is contained in:
Rishabh 2022-05-12 20:38:03 +05:30
parent d2d3e3ba08
commit 8bee963e53
2 changed files with 1 additions and 12 deletions

View File

@ -506,7 +506,7 @@ class SignupPage extends React.Component {
const sticky = !showOnlyFree && (freeBenefits.length || freeDescription);
return (
<section class="gh-portal-signup">
<section className="gh-portal-signup">
<div className='gh-portal-section'>
<div className='gh-portal-logged-out-form-container'>
<InputForm

View File

@ -12,17 +12,6 @@ function addRootDiv() {
document.body.appendChild(elem);
}
function getSiteUrl() {
/**
* @type {HTMLElement}
*/
const scriptTag = document.querySelector('script[data-ghost]');
if (scriptTag) {
return scriptTag.dataset.ghost;
}
return '';
}
function getSiteData() {
/**
* @type {HTMLElement}