Skip to content

Commit

Permalink
fix: update query-client version (#128)
Browse files Browse the repository at this point in the history
  • Loading branch information
spaenleh authored Jun 13, 2024
1 parent dec9522 commit 2813ce9
Show file tree
Hide file tree
Showing 5 changed files with 261 additions and 144 deletions.
13 changes: 6 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
# Graasp App: Text Analysis

```
Create a env.development file with:
Create a `.env.development` file with:

PORT=3005
VITE_GRAASP_APP_KEY=<app KEY>
VITE_ENABLE_MOCK_API=true
VITE_API_HOST=<request address for the backend>
```dotenv
VITE_PORT=3005
VITE_GRAASP_APP_KEY=<app KEY>
VITE_ENABLE_MOCK_API=true
VITE_API_HOST=<request address for the backend>
```

[![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)
Expand All @@ -15,7 +15,6 @@
[![All Contributors](https://img.shields.io/badge/all_contributors-2-orange.svg?style=flat-square)](#contributors-)
<!-- ALL-CONTRIBUTORS-BADGE:END -->


## Contributors ✨

Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/docs/en/emoji-key)):
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
"dependencies": {
"@emotion/react": "11.11.1",
"@emotion/styled": "11.11.0",
"@graasp/apps-query-client": "3.3.0",
"@graasp/sdk": "3.3.0",
"@graasp/apps-query-client": "^3.4.15",
"@graasp/sdk": "^4.12.2",
"@graasp/ui": "4.1.1",
"@mui/icons-material": "5.11.16",
"@mui/lab": "5.0.0-alpha.136",
Expand Down
2 changes: 1 addition & 1 deletion public/mockServiceWorker.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
/* tslint:disable */

/**
* Mock Service Worker (1.3.2).
* Mock Service Worker (1.3.3).
* @see https://github.com/mswjs/msw
* - Please do NOT modify this file.
* - Please do NOT serve this file on production.
Expand Down
2 changes: 2 additions & 0 deletions src/data/db.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ export const MEMBERS: { [key: string]: CompleteMember } = {
updatedAt: new Date().toISOString(),
email: '[email protected]',
extra: {},
enableSaveActions: true,
},
BOB: {
id: '1f0a2774-a965-4b97-afb4-bccc3796e060',
Expand All @@ -39,6 +40,7 @@ export const MEMBERS: { [key: string]: CompleteMember } = {
updatedAt: new Date().toISOString(),
email: '[email protected]',
extra: {},
enableSaveActions: true,
},
};

Expand Down
Loading

0 comments on commit 2813ce9

Please sign in to comment.