Skip to content

Commit

Permalink
[#21] Remove redundant class and javascript curcly braces for props
Browse files Browse the repository at this point in the history
  • Loading branch information
liamstevens111 committed Mar 8, 2023
1 parent bee4a87 commit 9929fd1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/screens/Login/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ function LoginScreen() {
className="my-3 block h-14 w-80"
onInputChange={handleEmailChange}
/>
<div className="relative w-80">
<div className="relative">
<Input
name="password"
label={t('login.password')}
Expand All @@ -118,7 +118,7 @@ function LoginScreen() {
{t('login.forgot-password')}
</a>
</div>
<Button text={t('login.sign-in')} className="h-14 w-80" type={'submit'} disabled={formSubmitted} />
<Button text={t('login.sign-in')} className="h-14 w-80" type="submit" disabled={formSubmitted} />
</form>
</>
);
Expand Down

0 comments on commit 9929fd1

Please sign in to comment.