diff --git a/.github/workflows/e2e.yml b/.github/workflows/e2e.yml
index 3e1100bab..874b33801 100644
--- a/.github/workflows/e2e.yml
+++ b/.github/workflows/e2e.yml
@@ -68,7 +68,7 @@ jobs:
AUTH_CLIENT_SECRET: ${{ secrets.AUTH_CLIENT_SECRET }}
run: yarn test:e2e
- - uses: actions/upload-artifact@v3
+ - uses: actions/upload-artifact@v4
if: always()
with:
name: playwright-report
diff --git a/src/pages/organizers/[organizerId]/ownerships/OwnershipsTable.tsx b/src/pages/organizers/[organizerId]/ownerships/OwnershipsTable.tsx
index 7deb10d31..c21fc2842 100644
--- a/src/pages/organizers/[organizerId]/ownerships/OwnershipsTable.tsx
+++ b/src/pages/organizers/[organizerId]/ownerships/OwnershipsTable.tsx
@@ -6,6 +6,7 @@ import {
OwnershipRequest,
OwnershipState,
} from '@/hooks/api/ownerships';
+import { Alert, AlertVariants } from '@/ui/Alert';
import { Button, ButtonVariants } from '@/ui/Button';
import { Icons } from '@/ui/Icon';
import { Inline } from '@/ui/Inline';
@@ -95,10 +96,6 @@ export const OwnershipsTable = ({
[requests],
);
- if (requests.length === 0) {
- return {t('organizers.ownerships.table.no_results')};
- }
-
return (
{