Skip to content

Commit

Permalink
Merge branch 'main' into feature/III-6180
Browse files Browse the repository at this point in the history
  • Loading branch information
vhande authored Feb 4, 2025
2 parents 1792126 + 518270f commit 646ea4d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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';
Expand Down Expand Up @@ -95,10 +96,6 @@ export const OwnershipsTable = ({
[requests],
);

if (requests.length === 0) {
return <Text>{t('organizers.ownerships.table.no_results')}</Text>;
}

return (
<Stack
role="table"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -178,6 +178,7 @@ const Ownership = () => {
<OwnershipsTable
requests={approvedRequests}
onDelete={setRequestToBeDeleted}
creator={creator}
/>
<Modal
title={t('organizers.ownerships.delete_modal.title')}
Expand Down

0 comments on commit 646ea4d

Please sign in to comment.