diff options
Diffstat (limited to 'src/components/InstructionCard.tsx')
| -rw-r--r-- | src/components/InstructionCard.tsx | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/components/InstructionCard.tsx b/src/components/InstructionCard.tsx index fdf6755..392c782 100644 --- a/src/components/InstructionCard.tsx +++ b/src/components/InstructionCard.tsx @@ -11,12 +11,10 @@ export function InstructionCard({ pathExists }: InstructionCardProps) { return ( <PanelSectionRow> <div style={STYLES.instructionCard}> - <div style={{ fontWeight: 'bold', marginBottom: '8px', color: 'var(--decky-accent-text)' }}> + <div style={{ fontWeight: "bold", marginBottom: "8px", color: "var(--decky-accent-text)" }}> {MESSAGES.instructionTitle} </div> - <div style={{ whiteSpace: 'pre-line' }}> - {MESSAGES.instructionText} - </div> + <div style={{ whiteSpace: "pre-line" }}>{MESSAGES.instructionText}</div> </div> </PanelSectionRow> ); |
