fix: p tag to typography

Signed-off-by: Federico Morreale <frc.morreale@gmail.com>
This commit is contained in:
Federico Morreale
2023-10-11 11:56:45 +02:00
parent 26e4d916d5
commit a484e6c23c
@@ -166,7 +166,9 @@ export const RepoUrlPicker = (props: RepoUrlPickerProps) => {
<Divider />
</Box>
)}
{schema.description && <p>{schema.description}</p>}
{schema.description && (
<Typography variant="body1">{schema.description}</Typography>
)}
<RepoUrlPickerHost
host={state.host}
hosts={allowedHosts}