Skip to content

Commit

Permalink
Package Details
Browse files Browse the repository at this point in the history
  • Loading branch information
Abhimanyu-dev committed Sep 4, 2024
1 parent 2ee235b commit 7834fd9
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion pages/student/rc/[rcid]/proforma/[proformaId]/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ function Index() {
getCompanydata();
}, [token, rid, ID, data]);
let content;
if (+rid % 2 === 0) {
if (+rid % 2 === 1) {
content = (
<Card
elevation={5}
Expand Down Expand Up @@ -323,6 +323,10 @@ function Index() {
<h3>Job Description</h3>
{isFetched && <RichText onChange={setJd} readOnly value={jd} />}
</Grid>
<Grid item xs={12} md={12} key="jd">
<h3>Package Details</h3>
{isFetched && <RichText onChange={setJd} readOnly value={pd} />}
</Grid>
<Grid item xs={12} md={6} key="bond">
<h3>Bond Details</h3>
<TextField
Expand Down

0 comments on commit 7834fd9

Please sign in to comment.