Skip to content

Commit

Permalink
fixed lint
Browse files Browse the repository at this point in the history
  • Loading branch information
NancyAanchal committed Jul 23, 2024
1 parent 9d96d4a commit 2c0fca7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion nepalingo-web/src/hooks/StreakContext.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {
import React, {
createContext,
useContext,
useState,
Expand Down
6 changes: 3 additions & 3 deletions nepalingo-web/src/pages/Login.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ const Login: React.FC = () => {
<CustomTextInput
label="Username"
name="username"
placeholder="Username"
placeholder="eg., The Bird"
value={username}
onChange={(e) => setUsername(e.target.value)}
iconProps={{
Expand All @@ -128,7 +128,7 @@ const Login: React.FC = () => {
<CustomTextInput
label="Email"
name="email"
placeholder="Email"
placeholder="eg., [email protected]"
value={email}
onChange={(e) => setEmail(e.target.value)}
iconProps={{
Expand All @@ -143,7 +143,7 @@ const Login: React.FC = () => {
<CustomTextInput
label="Password"
name="password"
placeholder="Password"
placeholder="eg., @ReallySecure07"
type={showPassword ? "text" : "password"}
value={password}
onChange={(e) => setPassword(e.target.value)}
Expand Down

0 comments on commit 2c0fca7

Please sign in to comment.