aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorLibravatar Jesse Bellingham <jbellingham91@gmail.com>2021-08-09 21:27:09 +1000
committerLibravatar Vijay Raghavan Aravamudhan <vraravam@users.noreply.github.com>2021-08-09 23:39:00 +0000
commit98063b9c22f1054ad8fc16c13bb4d50b6550b164 (patch)
tree31794a3932139e9aca82f3023909ae2655d618db /src
parentchore: set default fallback locale for spell-checker to be 'en-US'. (diff)
downloadferdium-app-98063b9c22f1054ad8fc16c13bb4d50b6550b164.tar.gz
ferdium-app-98063b9c22f1054ad8fc16c13bb4d50b6550b164.tar.zst
ferdium-app-98063b9c22f1054ad8fc16c13bb4d50b6550b164.zip
fix: Fix incorrect proptype in night builds modal
Diffstat (limited to 'src')
-rw-r--r--src/features/nightlyBuilds/Component.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/features/nightlyBuilds/Component.js b/src/features/nightlyBuilds/Component.js
index 5a809aaf2..d35a6ebfe 100644
--- a/src/features/nightlyBuilds/Component.js
+++ b/src/features/nightlyBuilds/Component.js
@@ -129,7 +129,7 @@ nightlyBuildsModal.wrappedComponent.propTypes = {
129 settings: PropTypes.instanceOf(SettingsStore).isRequired, 129 settings: PropTypes.instanceOf(SettingsStore).isRequired,
130 }).isRequired, 130 }).isRequired,
131 actions: PropTypes.shape({ 131 actions: PropTypes.shape({
132 settings: PropTypes.instanceOf(SettingsStore).isRequired, 132 settings: PropTypes.object.isRequired,
133 user: PropTypes.instanceOf(UserStore).isRequired, 133 user: PropTypes.instanceOf(UserStore).isRequired,
134 ui: PropTypes.instanceOf(UIStore).isRequired, 134 ui: PropTypes.instanceOf(UIStore).isRequired,
135 }).isRequired, 135 }).isRequired,