fix: dangling zero in api keys list (#2548)
This commit is contained in:
parent
cf68541520
commit
7493093a1a
1 changed files with 1 additions and 1 deletions
|
@ -36,7 +36,7 @@ export default function ApiKeyListContainer() {
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
{data.length && (
|
{data.length > 0 && (
|
||||||
<List className="pb-6">
|
<List className="pb-6">
|
||||||
{data.map((item: any) => (
|
{data.map((item: any) => (
|
||||||
<ApiKeyListItem
|
<ApiKeyListItem
|
||||||
|
|
Loading…
Reference in a new issue