We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0be3f09 commit 9471fccCopy full SHA for 9471fcc
1 file changed
apps/webapp/app/routes/admin.back-office.orgs.$orgId.tsx
@@ -400,7 +400,16 @@ export default function BackOfficeOrgPage() {
400
</Paragraph>
401
402
<div className="flex items-center gap-2">
403
- <Button type="submit" variant="primary/medium" disabled={isSubmitting}>
+ <Button
404
+ type="submit"
405
+ variant="primary/medium"
406
+ disabled={
407
+ isSubmitting ||
408
+ !refillRate.trim() ||
409
+ !intervalStr.trim() ||
410
+ !maxTokens.trim()
411
+ }
412
+ >
413
Save
414
</Button>
415
<Button
0 commit comments