Skip to content

Commit

Permalink
fix: allocation button on wrong side
Browse files Browse the repository at this point in the history
  • Loading branch information
joonatank committed Jan 9, 2025
1 parent a2c3fc3 commit 6e0b060
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions apps/admin-ui/src/spa/application-rounds/[id]/review/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -314,12 +314,6 @@ export function Review({
$direction="row-reverse"
$alignItems="center"
>
{isEndingAllowed || isHandled ? (
<EndAllocation
applicationRound={applicationRound}
refetch={refetch}
/>
) : null}
{!hideAllocation && (
<>
{isAllocationEnabled ? (
Expand All @@ -333,6 +327,12 @@ export function Review({
)}
</>
)}
{isEndingAllowed || isHandled ? (
<EndAllocation
applicationRound={applicationRound}
refetch={refetch}
/>
) : null}
</Flex>
<TabWrapper>
<Tabs initiallyActiveTab={activeTabIndex}>
Expand Down

0 comments on commit 6e0b060

Please sign in to comment.