aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorLibravatar MCMXC <16797721+mcmxcdev@users.noreply.github.com>2023-09-20 00:29:22 +0200
committerLibravatar GitHub <noreply@github.com>2023-09-19 22:29:22 +0000
commit9c26dc77c149dd9f7691803a621749bd2982cf25 (patch)
tree7345b89259cf7c064a449e181b9395d3247c6985 /src
parent6.5.0-nightly.14 [skip ci] (diff)
downloadferdium-app-9c26dc77c149dd9f7691803a621749bd2982cf25.tar.gz
ferdium-app-9c26dc77c149dd9f7691803a621749bd2982cf25.tar.zst
ferdium-app-9c26dc77c149dd9f7691803a621749bd2982cf25.zip
chore: upgrade all non major dependencies (#1358)
- upgrade all non-major dependencies to latest - add ts-expect-error to code which errors due to typescript upgrade
Diffstat (limited to 'src')
-rw-r--r--src/features/workspaces/components/CreateWorkspaceForm.tsx2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/features/workspaces/components/CreateWorkspaceForm.tsx b/src/features/workspaces/components/CreateWorkspaceForm.tsx
index eafe9f36a..b72052fe2 100644
--- a/src/features/workspaces/components/CreateWorkspaceForm.tsx
+++ b/src/features/workspaces/components/CreateWorkspaceForm.tsx
@@ -76,6 +76,7 @@ class CreateWorkspaceForm extends Component<IProps> {
76 {...form.$('name').bind()} 76 {...form.$('name').bind()}
77 className={classes.input} 77 className={classes.input}
78 showLabel={false} 78 showLabel={false}
79 // @ts-expect-error Expected 1 arguments, but got 2.
79 onEnterKey={this.submitForm.bind(this, form)} 80 onEnterKey={this.submitForm.bind(this, form)}
80 focus={workspaceStore.isUserAllowedToUseFeature} 81 focus={workspaceStore.isUserAllowedToUseFeature}
81 /> 82 />
@@ -83,6 +84,7 @@ class CreateWorkspaceForm extends Component<IProps> {
83 className={`${classes.submitButton} franz-form__button`} 84 className={`${classes.submitButton} franz-form__button`}
84 type="submit" 85 type="submit"
85 label={intl.formatMessage(messages.submitButton)} 86 label={intl.formatMessage(messages.submitButton)}
87 // @ts-expect-error Expected 1 arguments, but got 2.
86 onClick={this.submitForm.bind(this, form)} 88 onClick={this.submitForm.bind(this, form)}
87 busy={isSubmitting} 89 busy={isSubmitting}
88 buttonType={isSubmitting ? 'secondary' : 'primary'} 90 buttonType={isSubmitting ? 'secondary' : 'primary'}