Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: Mise à jour des notifications après changement de profil #1756

Merged
merged 3 commits into from
Jul 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
## [1.141.2](https://github.com/SocialGouv/1000jours/compare/v1.141.1...v1.141.2) (2024-07-08)


### Bug Fixes

* change type whatsapp_redirect_message to richtext ([#1755](https://github.com/SocialGouv/1000jours/issues/1755)) ([1094147](https://github.com/SocialGouv/1000jours/commit/1094147f4c8042e28e013f6c9f8b41be18bc7134))
- change type whatsapp_redirect_message to richtext ([#1755](https://github.com/SocialGouv/1000jours/issues/1755)) ([1094147](https://github.com/SocialGouv/1000jours/commit/1094147f4c8042e28e013f6c9f8b41be18bc7134))

## [1.141.1](https://github.com/SocialGouv/1000jours/compare/v1.141.0...v1.141.1) (2024-07-03)

Expand Down
4 changes: 2 additions & 2 deletions front/app.config.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/* eslint-disable @typescript-eslint/naming-convention */
const APP_VERSION = "1.1.106";
const APP_VERSION_NUM = 106;
const APP_VERSION = "1.1.107";
const APP_VERSION_NUM = 107;

export default {
expo: {
Expand Down
4 changes: 2 additions & 2 deletions front/src/components/baseComponents/loader.component.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@ const Loader: React.FC<Props> = ({ backdrop = true }) => {
presentationStyle="overFullScreen"
transparent={true}
>
<SafeAreaView>
{/* <SafeAreaView> */}
<View style={styles.mainContainer}>
<MaterialIndicator color={Colors.white} />
</View>
</SafeAreaView>
{/* </SafeAreaView> */}
</RNModal>
) : (
<MaterialIndicator color={Colors.primaryBlueDark} />
Expand Down
Loading
Loading