Skip to content

Commit

Permalink
ImportModal: Increase maxSize
Browse files Browse the repository at this point in the history
This increases limit for the maximum size of a blueprint.
  • Loading branch information
regexowl committed Feb 17, 2025
1 parent 0329438 commit 6b1e4ec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Components/Blueprints/ImportBlueprintModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,7 @@ export const ImportBlueprintModal: React.FunctionComponent<
browseButtonText="Upload"
dropzoneProps={{
accept: { 'text/json': ['.json'], 'text/plain': ['.toml'] },
maxSize: 25000,
maxSize: 512000,
onDropRejected: handleFileRejected,
}}
validated={isRejected || isInvalidFormat ? 'error' : 'default'}
Expand Down

0 comments on commit 6b1e4ec

Please sign in to comment.