Skip to content

Commit 98215a3

Browse files
committed
Merge branch 'develop' into dependabot/merge
2 parents 6adcc7c + 622f24c commit 98215a3

File tree

131 files changed

+7301
-6840
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

131 files changed

+7301
-6840
lines changed

.env.defaults

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@ REGION=berlin
2222

2323
# Select backend to connect to
2424
#
25-
# Backend URLs are configured in each region's configuration and in the
25+
# Backend URLs are configured in each region's configuration and in the
2626
# default configuration in src/config/default/base.ts
27-
#
27+
#
2828
# Available configurations for default region 'berlin':
2929
# - production
3030
# - staging
@@ -53,4 +53,4 @@ CYPRESS_PASSWORD=
5353
CYPRESS_BROWSER_WINDOW=
5454

5555
# Removes ads during `npm install`
56-
ADBLOCK=true
56+
ADBLOCK=true

.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v16.14.2
1+
v18.4.0

netlify.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
[[redirects]]
2222
from = "/api/aachen/v1/*"
23-
to = "https://fixmyaachen.herokuapp.com/api/:splat"
23+
to = "https://api.radbuegel-aachen.de/api/:splat"
2424
status = 200
2525
force = true
2626
[redirects.headers]

package-lock.json

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

package.json

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@
4343
"@material-ui/icons": "^4.11.3",
4444
"@material-ui/pickers": "^3.3.10",
4545
"@material-ui/styles": "^4.11.5",
46+
"@sentry/react": "^6.19.6",
4647
"@turf/along": "^6.5.0",
4748
"@turf/boolean-within": "^6.5.0",
4849
"@turf/center": "^6.5.0",
@@ -71,19 +72,17 @@
7172
"prop-types": "^15.7.2",
7273
"rc-slider": "^10.0.0",
7374
"react": "^17.0.2",
74-
"react-autosize-textarea": "^7.1.0",
7575
"react-collapsible": "^2.8.3",
7676
"react-copy-to-clipboard": "^5.1.0",
7777
"react-dom": "^17.0.2",
7878
"react-helmet": "^6.1.0",
7979
"react-intersection-observer": "^8.31.0",
80+
"react-intl": "^5.25.1",
8081
"react-is": "^16.13.1",
8182
"react-markdown": "^8.0.0",
82-
"react-intl": "^5.25.1",
8383
"react-piwik": "^1.11.0",
8484
"react-redux": "^7.2.2",
8585
"react-router-dom": "^5.3.0",
86-
"react-router-last-location": "^2.0.1",
8786
"react-router-prop-types": "^1.0.4",
8887
"react-slick": "^0.29.0",
8988
"react-spinners": "^0.10.6",
@@ -146,11 +145,11 @@
146145
"eslint": "^8.17.0",
147146
"eslint-config-airbnb": "^19.0.1",
148147
"eslint-config-prettier": "^8.5.0",
149-
"eslint-import-resolver-webpack": "^0.13.2",
148+
"eslint-import-resolver-webpack": "~0.11.1",
150149
"eslint-plugin-chai-friendly": "^0.5.0",
151150
"eslint-plugin-cypress": "^2.11.2",
152-
"eslint-plugin-import": "^2.26.0",
153151
"eslint-plugin-formatjs": "^3.1.0",
152+
"eslint-plugin-import": "^2.26.0",
154153
"eslint-plugin-jest-dom": "^4.0.1",
155154
"eslint-plugin-jsx-a11y": "^6.2.3",
156155
"eslint-plugin-prettier": "^4.0.0",

src/App.tsx

Lines changed: 8 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ import { IntlProvider, IntlConfig } from 'react-intl';
66
import ReactPiwik from 'react-piwik';
77
import { connect } from 'react-redux';
88
import { Router } from 'react-router-dom';
9-
import { LastLocationProvider } from 'react-router-last-location';
109
import styled from 'styled-components';
1110

1211
import ErrorBoundary from '~/components/ErrorBoundary';
@@ -68,16 +67,14 @@ const App = ({ dispatch, isEmbedMode }) => {
6867
>
6968
<GlobalStyles />
7069
<Router history={history}>
71-
<LastLocationProvider>
72-
<AppWrapper>
73-
{!isEmbedMode && <Menu />}
74-
<AppContent>
75-
<ErrorBoundary>
76-
<Routes />
77-
</ErrorBoundary>
78-
</AppContent>
79-
</AppWrapper>
80-
</LastLocationProvider>
70+
<AppWrapper>
71+
{!isEmbedMode && <Menu />}
72+
<AppContent>
73+
<ErrorBoundary>
74+
<Routes />
75+
</ErrorBoundary>
76+
</AppContent>
77+
</AppWrapper>
8178
</Router>
8279
</IntlProvider>
8380
</ThemeProvider>

src/apps/Gastro/components/RegistrationForm/Direct.tsx

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -116,10 +116,6 @@ const StyledForm = styled(Form)`
116116
}
117117
`;
118118

119-
const InvalidFormNotice = styled.p`
120-
margin: 3em 0;
121-
`;
122-
123119
const isProduction = process.env.NODE_ENV === 'production';
124120

125121
const connector = connect(({ AppState }: RootState) => ({
File renamed without changes.

0 commit comments

Comments
 (0)