Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/SocialGouv/ozensemble
Browse files Browse the repository at this point in the history
  • Loading branch information
YoanRos committed Jul 24, 2024
2 parents 77519f2 + 86872f0 commit 5a5c602
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## [1.161.27](https://github.com/SocialGouv/ozensemble/compare/v1.161.26...v1.161.27) (2024-07-24)


### Bug Fixes

* Nan in hierarchisation of situations ([08c64c3](https://github.com/SocialGouv/ozensemble/commit/08c64c3e9ddb1e45a9884986f410e085aa581de8))

## [1.161.26](https://github.com/SocialGouv/ozensemble/compare/v1.161.25...v1.161.26) (2024-07-23)


Expand Down
4 changes: 2 additions & 2 deletions expo/src/scenes/Defis/Defi2/Defi2_Day4.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,11 @@ const Defi2_Day4 = ({ navigation, route }) => {
const setAnswersRiskSituations = useSetRecoilState(riskSituationsQuizzAnswersState);
const answers = useRecoilValue(riskSituationsAnswersKeysSelector);

const renderItem = ({ item, index, drag, isActive }) => {
const renderItem = ({ item, getIndex, drag, isActive }) => {
return (
<DraggableContainer onLongPress={drag} disabled={isActive}>
<QButton
content={index + 1}
content={getIndex() + 1}
disabled
colorText="#ffffff"
colorBorder="#4030A5"
Expand Down

0 comments on commit 5a5c602

Please sign in to comment.