Skip to content

Bug: CollectionCreate form does not display error message when collection creation fails #3948

@pranjal270

Description

@pranjal270

p5.js version

No response

What is your operating system?

Windows

Web browser and version

chrome://145.0.7632.117

Actual Behavior

In the collection creation form, the error handling logic for creating a new sketch collection is incomplete. The local state creationError is defined but never updated when the createCollection action fails.

When collection creation fails (e.g., due to a network error or backend validation failure), no error message is shown to the user because creationError remains undefined. The createCollection action dispatches an ERROR action on failure, but the component neither listens to this state nor catches the error.

Expected Behavior

The component should display an appropriate error message when collection creation fails.

This can be achieved either by:

  • reading the error state from Redux, or

  • modifying the action to return a rejected Promise so the component can catch it and set its local creationError state to true.

Steps to reproduce

###Steps:

  1. Navigate to the Collection Creation page.
  2. Intercept the network request to the /collections endpoint and force it to fail (for example, return a 500 error).
  3. Attempt to create a collection.
  4. Observe that no error message is displayed despite the failure.

Snippet:

// TODO: error is never set!
// eslint-disable-next-line no-unused-vars
const [creationError, setCreationError] = useState();

Metadata

Metadata

Assignees

No one assigned

    Labels

    Awaiting Maintainer ApprovalNeeds review from a maintainer before moving forwardBugError or unexpected behaviors

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions