Merge pull request #58 from amhsirak/develop

fix: api key ui
This commit is contained in:
Karishma Shukla
2024-10-07 19:11:09 +05:30
committed by GitHub
2 changed files with 2 additions and 2 deletions

View File

@@ -129,7 +129,7 @@ const ApiKeyManager = () => {
) : ( ) : (
<> <>
<Typography>You haven't generated an API key yet.</Typography> <Typography>You haven't generated an API key yet.</Typography>
<Button onClick={generateApiKey} variant="contained" color="primary"> <Button onClick={generateApiKey} variant="contained" color="primary" sx={{ marginTop: '15px'}}>
Generate API Key Generate API Key
</Button> </Button>
</> </>

View File

@@ -50,7 +50,7 @@ export const MainMenu = ({ value = 'recordings', handleChangeContent }: MainMenu
<Tab sx={{ <Tab sx={{
alignItems: 'baseline', alignItems: 'baseline',
fontSize: 'medium', fontSize: 'medium',
}} value="apikey" label="Generate API Key" /> }} value="apikey" label="API Key" />
</Tabs> </Tabs>
</Box> </Box>
</Paper> </Paper>