Skip to content
This repository was archived by the owner on Feb 10, 2025. It is now read-only.

Commit 6e0b060

Browse files
committed
fix: allocation button on wrong side
1 parent a2c3fc3 commit 6e0b060

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

  • apps/admin-ui/src/spa/application-rounds/[id]/review

apps/admin-ui/src/spa/application-rounds/[id]/review/index.tsx

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -314,12 +314,6 @@ export function Review({
314314
$direction="row-reverse"
315315
$alignItems="center"
316316
>
317-
{isEndingAllowed || isHandled ? (
318-
<EndAllocation
319-
applicationRound={applicationRound}
320-
refetch={refetch}
321-
/>
322-
) : null}
323317
{!hideAllocation && (
324318
<>
325319
{isAllocationEnabled ? (
@@ -333,6 +327,12 @@ export function Review({
333327
)}
334328
</>
335329
)}
330+
{isEndingAllowed || isHandled ? (
331+
<EndAllocation
332+
applicationRound={applicationRound}
333+
refetch={refetch}
334+
/>
335+
) : null}
336336
</Flex>
337337
<TabWrapper>
338338
<Tabs initiallyActiveTab={activeTabIndex}>

0 commit comments

Comments
 (0)