Skip to content

Commit 6cf9139

Browse files
committed
Merge branch 'main' into APL-241
2 parents 6133dac + a144e9f commit 6cf9139

File tree

2 files changed

+13
-4
lines changed

2 files changed

+13
-4
lines changed

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
## Considerations
2+
3+
- [ ] I have tested the changes in both light and dark mode.
4+
- [ ] I have considered the need for new unit tests.
5+
- [ ] I have tested the changes on a cluster.
6+
- [ ] I have included relevant documentation updates.
7+
- [ ] I have an approved Figma design or have reflected my changes in Figma
8+
- [ ] I have verified that the UI/UX is consistent in major browsers (e.g., Chrome, Firefox, Safari, Edge).
9+
- [ ] I have tested the changes for responsiveness in different screen resolutions.
10+
- [ ] I have tested expected error states and verified that the user is presented with informative error messages.
11+
- [ ] I have tested the feature with unusual or extreme inputs (e.g., very long strings, empty states, clicking a button multiple times quickly).

src/components/UpgradeVersion.tsx

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ export default function UpgradesCard({ version }: Props): React.ReactElement | n
8989
<Typography variant='h5'>Available versions</Typography>
9090

9191
<Typography variant='body1' sx={{ fontSize: '14px', fontWeight: 'bold' }}>
92-
Current version: v{version}
92+
Current version: {version}
9393
</Typography>
9494
</Stack>
9595

@@ -105,9 +105,7 @@ export default function UpgradesCard({ version }: Props): React.ReactElement | n
105105
marginBottom: '0.5rem',
106106
}}
107107
>
108-
<Typography sx={{ marginRight: '2rem' }}>
109-
There are no new updates for v{currentMajorVersion}
110-
</Typography>
108+
<Typography sx={{ marginRight: '2rem' }}>There are no new updates for {currentMajorVersion}</Typography>
111109
</Box>
112110
)}
113111

0 commit comments

Comments
 (0)