mirror of
https://github.com/Infisical/infisical.git
synced 2026-01-08 23:18:05 -05:00
feat: corrected key name
This commit is contained in:
@@ -73,10 +73,10 @@ export const ScimEvents = () => {
|
||||
<TBody>
|
||||
{!isPending &&
|
||||
scimEvents?.pages?.map((group, i) => (
|
||||
<Fragment key={`audit-log-fragment-${i + 1}`}>
|
||||
<Fragment key={`scim-events-fragment-${i + 1}`}>
|
||||
{group.map((scimEvent) => (
|
||||
<Tr
|
||||
key={`audit-log-${scimEvent.id}`}
|
||||
key={`scim-events-${scimEvent.id}`}
|
||||
className="group h-10 cursor-pointer border-x-0 border-t-0 border-b hover:bg-mineshaft-700"
|
||||
role="button"
|
||||
tabIndex={0}
|
||||
|
||||
Reference in New Issue
Block a user