Skip to content

Commit

Permalink
use column rendering
Browse files Browse the repository at this point in the history
  • Loading branch information
hguerrero committed Feb 2, 2024
1 parent 709034a commit 3ced621
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions client/src/components/Services.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ const Services = ({ config }: { config: ExtensionConfig }) => {

return (
<>
<Box sx={{ width: '100%', alignItems: 'center' }} my={5}>
<Box sx={{ width: '100%', alignItems: 'center' }} mt={5} mb={2}>
<Box display="flex" flex="row" justifyContent="space-between">
<Typography variant="h3">Services</Typography>
<Button
Expand All @@ -89,9 +89,9 @@ const Services = ({ config }: { config: ExtensionConfig }) => {
<TableContainer>
<Table aria-label="collapsible table">
<TableBody>
{services.map((service) => (
{services.map((service, index) => (
<ServiceRow
key={service.id}
key={service.id + index}
service={service}
config={config}
/>
Expand Down

0 comments on commit 3ced621

Please sign in to comment.