Skip to content

Commit ec14ac4

Browse files
committed
[Fix] Replaced single quotes with double quotes to satisfy ESLint
Signed-off-by: Ayush More <ayushmore42595@gmail.com>
1 parent a74d358 commit ec14ac4

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

  • src/sections/Projects/Sistent/components/dialog

src/sections/Projects/Sistent/components/dialog/code.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -117,14 +117,14 @@ const DialogCode = () => {
117117
<Dialog open={openForm} onClose={() => setOpenForm(false)}>
118118
<DialogTitle>Subscribe</DialogTitle>
119119
<DialogContent>
120-
<form style={{ display: 'flex', flexDirection: 'column', gap: '1rem' }}>
120+
<form style={{ display: "flex", flexDirection: "column", gap: "1rem" }}>
121121
<label>
122122
Email Address:
123-
<input type="email" placeholder="you@example.com" style={{ width: '100%', padding: '0.5rem' }} />
123+
<input type="email" placeholder="you@example.com" style={{ width: "100%", padding: "0.5rem" }} />
124124
</label>
125125
<label>
126126
Name:
127-
<input type="text" placeholder="John Doe" style={{ width: '100%', padding: '0.5rem' }} />
127+
<input type="text" placeholder="John Doe" style={{ width: "100%", padding: "0.5rem" }} />
128128
</label>
129129
</form>
130130
</DialogContent>

0 commit comments

Comments
 (0)