mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 00:41:05 +08:00
Make ignoredException an Error to prevent issues with libraries that can't handle a thrown string
This commit is contained in:
parent
e0d10ccbe2
commit
4ff4ec4bb6
@ -44,8 +44,6 @@ enum events {
|
||||
SHARED_STATE_CHANGED = 'sharedStateChanged',
|
||||
SHARED_STATE_SET = 'sharedStateSet',
|
||||
NAVIGATE_URL = 'navigateUrl',
|
||||
// Used to break out of the current render without showing a redbox
|
||||
IGNORED_EXCEPTION = 'ignoredException',
|
||||
}
|
||||
|
||||
// Enables: `import Events from ...`
|
||||
@ -83,5 +81,7 @@ export const {
|
||||
SHARED_STATE_CHANGED,
|
||||
SHARED_STATE_SET,
|
||||
NAVIGATE_URL,
|
||||
IGNORED_EXCEPTION,
|
||||
} = events;
|
||||
|
||||
// Used to break out of the current render without showing a redbox
|
||||
export const IGNORED_EXCEPTION = new Error('ignoredException');
|
||||
|
Loading…
x
Reference in New Issue
Block a user