Skip to content

Commit c5e996c

Browse files
authored
chore (deps): update core (#1294)
* chore: update core in front end * chore: update core in backend * chore: take out failed device type
1 parent a0bb5a9 commit c5e996c

6 files changed

Lines changed: 11 additions & 20 deletions

File tree

package-lock.json

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,8 +65,8 @@
6565
"expo-document-picker": "13.0.3",
6666
"expo-file-system": "18.0.12",
6767
"expo-font": "13.0.4",
68-
"expo-image-manipulator": "13.0.6",
6968
"expo-image": "2.0.7",
69+
"expo-image-manipulator": "13.0.6",
7070
"expo-localization": "16.0.1",
7171
"expo-location": "18.0.10",
7272
"expo-secure-store": "14.0.1",
@@ -115,7 +115,7 @@
115115
"@babel/preset-env": "7.28.0",
116116
"@babel/runtime": "7.27.6",
117117
"@comapeo/cloud": "0.1.0",
118-
"@comapeo/core": "4.1.0",
118+
"@comapeo/core": "4.1.1",
119119
"@comapeo/schema": "2.0.0",
120120
"@digidem/types": "2.3.0",
121121
"@eslint-react/eslint-plugin": "1.52.2",

src/backend/package-lock.json

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/backend/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"author": "Digital Democracy",
1414
"license": "MIT",
1515
"dependencies": {
16-
"@comapeo/core": "4.1.0",
16+
"@comapeo/core": "4.1.1",
1717
"@comapeo/ipc": "4.0.0",
1818
"@mapeo/default-config": "5.0.0",
1919
"@sentry/node": "9.28.0",

src/frontend/screens/Settings/ProjectSettings/YourTeam/SelectDevice.tsx

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ import {DeviceCard} from '../../../../sharedComponents/DeviceCard';
1111
import {Text} from '../../../../sharedComponents/Text';
1212
import {NativeNavigationComponent} from '../../../../sharedTypes/navigation';
1313
import {useActiveProject} from '../../../../contexts/ActiveProjectContext';
14-
import {FAILED_ROLE_ID} from '../../../../sharedTypes';
1514

1615
const m = defineMessages({
1716
title: {
@@ -68,13 +67,6 @@ function InvitableDevicesList() {
6867
return true;
6968
}
7069

71-
// Devices who failed to successfully join the project
72-
// should be re-invitable, as the failure is due to external conditions
73-
// such as interruptions in the invite flow or device-related issues.
74-
if (existingMember.role.roleId === FAILED_ROLE_ID) {
75-
return true;
76-
}
77-
7870
return false;
7971
});
8072

src/frontend/sharedTypes/index.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,6 @@ export const COORDINATOR_ROLE_ID = 'f7c150f5a3a9a855';
4040
export const MEMBER_ROLE_ID = '012fd2d431c0bf60';
4141
export const BLOCKED_ROLE_ID = '9e6d29263cba36c9';
4242
export const LEFT_ROLE_ID = '8ced989b1904606b';
43-
export const FAILED_ROLE_ID = 'a24eaca65ab5d5d0';
4443
export const NO_ROLE_ID = '08e4251e36f6e7ed';
4544

4645
export type PhotoEXIF = NonNullable<

0 commit comments

Comments
 (0)