File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -3,5 +3,5 @@ NEXT_PUBLIC_FRONTEND_URL="http://localhost:3000"
33GOOGLE_CLIENT_ID =
44GOOGLE_CLIENT_SECRET =
55NEXT_PUBLIC_SECRET = secret
6- BASE_PATH = " /portal"
6+ NEXT_PUBLIC_BASE_PATH = " /portal"
77NEXTAUTH_URL = https://localhost:3000/portal/api/auth
Original file line number Diff line number Diff 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 (Please read it carefully)
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 } .</ span >
You can’t perform that action at this time.
0 commit comments