Merge branch 'staging'
This commit is contained in:
@@ -143,10 +143,10 @@ const DialogLog = ({ title, openDialog, setOpenDialog, data }: MuiDialogProps) =
|
|||||||
</Stack>
|
</Stack>
|
||||||
</Stack>
|
</Stack>
|
||||||
</Grid>
|
</Grid>
|
||||||
<Grid item xs={12}>
|
<Grid item xs={12}>
|
||||||
<Stack divider={<Divider flexItem />}>
|
<Stack divider={<Divider flexItem />}>
|
||||||
{ data.member.current_plan?.benefits && (
|
{ data.member.current_plan?.benefits && (
|
||||||
data.member.current_plan?.benefits.map((benefit, index) => (
|
data.member.current_plan?.benefits.filter((benefit) => benefit.pivot.active == 1).map((benefit, index) => (
|
||||||
<Stack direction="row" alignItems="center" key={index}>
|
<Stack direction="row" alignItems="center" key={index}>
|
||||||
<Box sx={{ width: '100%' }}>
|
<Box sx={{ width: '100%' }}>
|
||||||
<Typography>{benefit.code} {benefit.description ? ` - ${benefit.description} ` : ''}</Typography>
|
<Typography>{benefit.code} {benefit.description ? ` - ${benefit.description} ` : ''}</Typography>
|
||||||
|
|||||||
Reference in New Issue
Block a user