feat: removed trailing comma from ui

This commit is contained in:
=
2025-01-17 16:29:18 +05:30
parent 01ae19fa2b
commit e276752e7c
3 changed files with 3 additions and 3 deletions

View File

@@ -80,7 +80,7 @@ export const LoginPage = () => {
/>
</div>
</Link>
<div className="pb-28">{renderView()}</div>;
<div className="pb-28">{renderView()}</div>
</div>
);
};

View File

@@ -59,7 +59,7 @@ export const LoginSsoPage = () => {
/>
</div>
</Link>
<div>{renderView()}</div>;
<div>{renderView()}</div>
</div>
);
};

View File

@@ -89,7 +89,7 @@ export const SignupSsoPage = () => {
alt="Infisical Logo"
/>
</div>
<div>{renderView()}</div>;
<div>{renderView()}</div>
</div>
);
};