Skip to content

Commit 1e87398

Browse files
bug: Increased Terms and Conditions opacity and Variable Name in example env (#252)
1 parent 5a603ee commit 1e87398

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

.env.example

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@ NEXT_PUBLIC_FRONTEND_URL="http://localhost:3000"
33
GOOGLE_CLIENT_ID=
44
GOOGLE_CLIENT_SECRET=
55
NEXT_PUBLIC_SECRET=secret
6-
BASE_PATH="/portal"
6+
NEXT_PUBLIC_BASE_PATH="/portal"
77
NEXTAUTH_URL=https://localhost:3000/portal/api/auth

src/components/JAF/SeasonDetails.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ const SeasonDetails = ({
2323
useEffect(() => {
2424
axios.get(`${baseUrl}/api/v1/jaf`).then((res) => {
2525
res.data.seasons.map((season: any) => {
26-
const seasonString = `${season.type} ${season.year}`
26+
const seasonString = `${season.type} ${season.year}`;
2727
options.push({ value: season.id, label: seasonString });
2828
});
2929
setOptionsx(options);
@@ -52,15 +52,15 @@ const SeasonDetails = ({
5252
</Row>
5353
<Row>
5454
<div className="ml-auto mr-auto flex flex-col items-start gap-8 ">
55-
<div className="flex flex-col items-center w-[100%] text-[1rem] gap-1 opacity-60">
55+
<div className="flex flex-col items-center w-[100%] text-[1rem] gap-1 opacity-100">
5656
<div>Terms and Conditions</div>
5757
<div className=" opacity-50 text-[0.8rem]">
5858
{" "}
5959
&#40;Please read it carefully&#41;
6060
</div>
6161
</div>
6262
<div>
63-
<div className="flex flex-col gap-3 text-[0.8rem] opacity-50">
63+
<div className="flex flex-col gap-3 text-[0.8rem] opacity-100">
6464
{TermsAndConditions.map((tc, index) => (
6565
<div key={index} className="flex gap-3">
6666
<span>{index + 1}&#46;</span>

0 commit comments

Comments
 (0)