Skip to content

Commit

Permalink
use Typography instead of p
Browse files Browse the repository at this point in the history
  • Loading branch information
nlordell committed Oct 24, 2024
1 parent 9b549ca commit 46bc991
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/tx/security/safenet/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ function _getSafeTxHash({ safe, chainId, safeTx }: Required<SafeNetTxSimulationP

const SafeNetTxTxSimulationSummary = ({ simulation }: { simulation: SafeNetSimulationResponse }): ReactElement => {
if (simulation.results.length === 0) {
return <p>No SafeNet checks enabled...</p>
return <Typography>No SafeNet checks enabled...</Typography>
}

const guarantees = _groupResultGuarantees(simulation)
Expand Down
2 changes: 1 addition & 1 deletion src/components/tx/security/safenet/styles.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@

.errorSummary {
padding: calc(var(--space-1) * 2) calc(var(--space-2) * 2) var(--space-1) calc(var(--space-2) * 2);
}
}

0 comments on commit 46bc991

Please sign in to comment.