Skip to content

Commit be8d2cf

Browse files
committed
adjust logo size
1 parent 0523c8c commit be8d2cf

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

src/pages/cipp/integrations/configure.js

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -101,15 +101,14 @@ const Page = () => {
101101
backButtonTitle="Integrations"
102102
headerText={extension.headerText}
103103
hideTitleText={true}
104-
headerImage={logo}
105104
>
106105
<CardContent sx={{ pb: 0, mb: 0 }}>
107106
{logo && (
108107
<Box
109108
component="img"
110109
src={logo}
111110
alt={extension.name}
112-
sx={{ width: "50%", mx: "auto" }}
111+
sx={{ maxWidth: "50%", mx: "auto", maxHeight: "125px" }}
113112
/>
114113
)}
115114
<Typography variant="body2" paragraph style={{ marginTop: "1em" }}>
@@ -187,6 +186,7 @@ const Page = () => {
187186
<Tab label="Settings" {...tabProps(0)} />
188187
{extension?.mappingRequired && <Tab label="Tenant Mapping" {...tabProps(1)} />}
189188
{extension?.fieldMapping && <Tab label="Field Mapping" {...tabProps(2)} />}
189+
{extension?.id === "cippapi" && <Tab label="API Clients" {...tabProps(3)} />}
190190
</Tabs>
191191
</Box>
192192
<CippCardTabPanel value={value} index={0}>
@@ -202,6 +202,11 @@ const Page = () => {
202202
<CippIntegrationFieldMapping />
203203
</CippCardTabPanel>
204204
)}
205+
{extension?.id === "cippapi" && (
206+
<CippCardTabPanel value={value} index={3}>
207+
API Client component to go here
208+
</CippCardTabPanel>
209+
)}
205210
</Box>
206211
</CippPageCard>
207212
)}

0 commit comments

Comments
 (0)