Skip to content

Commit 144c227

Browse files
fix:formatting
1 parent f16a617 commit 144c227

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

Diff for: client/src/components/documents/adr/back/AdrCertificateBack.jsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ const AdrCertificateBack = ({ type, tank }) => {
2121
</div>
2222
<div className="border-t-8 border-black w-full h-[630px] flex font-black text-[50px] text-left">
2323
<div className="w-[50%] h-full border-r-[3px] border-black px-[100px] flex flex-col gap-[10px] pt-[50px]">
24-
{tank &&
24+
{tank && (
2525
<>
2626
<p>2</p>
2727
<p>3</p>
@@ -31,7 +31,7 @@ const AdrCertificateBack = ({ type, tank }) => {
3131
<p>8</p>
3232
<p>9</p>
3333
</>
34-
}
34+
)}
3535
</div>
3636
<div className="w-[50%] h-full border-l-[3px] border-black px-[100px] flex flex-col gap-[10px] pt-[50px]">
3737
<p>2</p>

Diff for: client/src/routes/sub-routes/create/Create.jsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ const Create = () => {
4242
birthDate: "",
4343
from: "",
4444
to: "",
45-
tank: false
45+
tank: false,
4646
},
4747
);
4848

Diff for: server/src/models/AdrCertificates.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,8 @@ const Adr = new mongoose.Schema({
4444
},
4545
tank: {
4646
type: Boolean,
47-
default: false
48-
}
47+
default: false,
48+
},
4949
})
5050

5151
const model = mongoose.model('Adr', Adr)

0 commit comments

Comments
 (0)