make alert details text larger

This commit is contained in:
mbecker20
2024-05-04 15:18:47 -07:00
parent 1e13cd9261
commit a07bc9fbca

View File

@@ -61,7 +61,7 @@ export const AlertDetailsDialog = ({ id }: { id: string }) => {
level: <AlertLevel level={alert.level} />
</div>
</div>
<pre>{JSON.stringify(alert.data.data, undefined, 2)}</pre>
<pre className="text-lg">{JSON.stringify(alert.data.data, undefined, 2)}</pre>
</div>
</DialogDescription>
</>