Skip to content

Commit

Permalink
fix: 참여하지 않은 공모에 대해서 버튼이 나오지 않는 버그 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
Namyunsuk committed Oct 23, 2024
1 parent 8b4bf8b commit 7e36ea9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -363,7 +363,7 @@
app:condition="@{vm.offeringCondition}"
app:currentCount="@{vm.currentCount}"
app:debouncedOnClick="@{() -> vm.onParticipateClick()}"
app:isVisible="@{vm.isParticipated && !vm.loading}"
app:isVisible="@{!vm.isParticipated && !vm.loading}"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
Expand Down

0 comments on commit 7e36ea9

Please sign in to comment.