aboutsummaryrefslogtreecommitdiffstats
path: root/src/actions
diff options
context:
space:
mode:
authorLibravatar Markus Hatvan <markus_hatvan@aon.at>2021-10-15 09:48:06 +0200
committerLibravatar GitHub <noreply@github.com>2021-10-15 09:48:06 +0200
commit14d2364fc69e0222133115c55a36286986006098 (patch)
tree9e9b3c41ef742bbe87ca1632b292c67043051957 /src/actions
parent5.6.3-nightly.34 [skip ci] (diff)
downloadferdium-app-14d2364fc69e0222133115c55a36286986006098.tar.gz
ferdium-app-14d2364fc69e0222133115c55a36286986006098.tar.zst
ferdium-app-14d2364fc69e0222133115c55a36286986006098.zip
chore: update eslint setup (#2074)
Diffstat (limited to 'src/actions')
-rw-r--r--src/actions/user.ts8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/actions/user.ts b/src/actions/user.ts
index 20d27ee53..15a9216bd 100644
--- a/src/actions/user.ts
+++ b/src/actions/user.ts
@@ -25,8 +25,10 @@ export default {
25 userData: PropTypes.object.isRequired, 25 userData: PropTypes.object.isRequired,
26 }, 26 },
27 resetStatus: {}, 27 resetStatus: {},
28 importLegacyServices: PropTypes.arrayOf(PropTypes.shape({ 28 importLegacyServices: PropTypes.arrayOf(
29 recipe: PropTypes.string.isRequired, 29 PropTypes.shape({
30 })).isRequired, 30 recipe: PropTypes.string.isRequired,
31 }),
32 ).isRequired,
31 delete: {}, 33 delete: {},
32}; 34};