diff options
Diffstat (limited to 'frontend/src/components')
| -rw-r--r-- | frontend/src/components/TitleView.tsx | 1 | ||||
| -rw-r--r-- | frontend/src/components/settings/pages/testing/index.tsx | 6 | ||||
| -rw-r--r-- | frontend/src/components/store/Store.tsx | 1 |
3 files changed, 4 insertions, 4 deletions
diff --git a/frontend/src/components/TitleView.tsx b/frontend/src/components/TitleView.tsx index 0cb82b7f..cce779ff 100644 --- a/frontend/src/components/TitleView.tsx +++ b/frontend/src/components/TitleView.tsx @@ -8,7 +8,6 @@ import { useDeckyState } from './DeckyState'; const titleStyles: CSSProperties = { display: 'flex', - paddingTop: '3px', paddingRight: '16px', position: 'sticky', top: '0px', diff --git a/frontend/src/components/settings/pages/testing/index.tsx b/frontend/src/components/settings/pages/testing/index.tsx index 3c032361..0f8b5ebe 100644 --- a/frontend/src/components/settings/pages/testing/index.tsx +++ b/frontend/src/components/settings/pages/testing/index.tsx @@ -66,9 +66,9 @@ export default function TestingVersionList() { if (testingVersions.length === 0) { return ( - <div> + <DialogBody> <p>No open PRs found</p> - </div> + </DialogBody> ); } @@ -80,7 +80,7 @@ export default function TestingVersionList() { <ul style={{ listStyleType: 'none', padding: '0' }}> {testingVersions.map((version) => { return ( - <li> + <li key={`${version.id}_${version.name}`}> <Field label={ <> diff --git a/frontend/src/components/store/Store.tsx b/frontend/src/components/store/Store.tsx index 72187cbc..f1d50033 100644 --- a/frontend/src/components/store/Store.tsx +++ b/frontend/src/components/store/Store.tsx @@ -240,6 +240,7 @@ const BrowseTab: FC<{ setPluginCount: Dispatch<SetStateAction<number | null>> }> }) .map((plugin: StorePlugin) => ( <PluginCard + key={`${plugin.id}_${plugin.name}`} storePlugin={plugin} installedPlugin={installedPlugins.find((installedPlugin) => installedPlugin.name === plugin.name)} /> |
