Skip to content

Commit 2813ce9

Browse files
authored
fix: update query-client version (#128)
1 parent dec9522 commit 2813ce9

File tree

5 files changed

+261
-144
lines changed

5 files changed

+261
-144
lines changed

README.md

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
# Graasp App: Text Analysis
22

3-
```
4-
Create a env.development file with:
3+
Create a `.env.development` file with:
54

6-
PORT=3005
7-
VITE_GRAASP_APP_KEY=<app KEY>
8-
VITE_ENABLE_MOCK_API=true
9-
VITE_API_HOST=<request address for the backend>
5+
```dotenv
6+
VITE_PORT=3005
7+
VITE_GRAASP_APP_KEY=<app KEY>
8+
VITE_ENABLE_MOCK_API=true
9+
VITE_API_HOST=<request address for the backend>
1010
```
1111

1212
[![GitHub package.json version](https://img.shields.io/github/package-json/v/graasp/graasp-app-text-analysis?color=green&style=flat-square)](https://github.com/graasp/graasp-app-text-analysis)
@@ -15,7 +15,6 @@
1515
[![All Contributors](https://img.shields.io/badge/all_contributors-2-orange.svg?style=flat-square)](#contributors-)
1616
<!-- ALL-CONTRIBUTORS-BADGE:END -->
1717

18-
1918
## Contributors ✨
2019

2120
Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/docs/en/emoji-key)):

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@
1212
"dependencies": {
1313
"@emotion/react": "11.11.1",
1414
"@emotion/styled": "11.11.0",
15-
"@graasp/apps-query-client": "3.3.0",
16-
"@graasp/sdk": "3.3.0",
15+
"@graasp/apps-query-client": "^3.4.15",
16+
"@graasp/sdk": "^4.12.2",
1717
"@graasp/ui": "4.1.1",
1818
"@mui/icons-material": "5.11.16",
1919
"@mui/lab": "5.0.0-alpha.136",

public/mockServiceWorker.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
/* tslint:disable */
33

44
/**
5-
* Mock Service Worker (1.3.2).
5+
* Mock Service Worker (1.3.3).
66
* @see https://github.com/mswjs/msw
77
* - Please do NOT modify this file.
88
* - Please do NOT serve this file on production.

src/data/db.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ export const MEMBERS: { [key: string]: CompleteMember } = {
3030
updatedAt: new Date().toISOString(),
3131
email: 'anna@email.com',
3232
extra: {},
33+
enableSaveActions: true,
3334
},
3435
BOB: {
3536
id: '1f0a2774-a965-4b97-afb4-bccc3796e060',
@@ -39,6 +40,7 @@ export const MEMBERS: { [key: string]: CompleteMember } = {
3940
updatedAt: new Date().toISOString(),
4041
email: 'bob@email.com',
4142
extra: {},
43+
enableSaveActions: true,
4244
},
4345
};
4446

0 commit comments

Comments
 (0)