From 892877cb4139291c6fb1c651d12476cc4abc1641 Mon Sep 17 00:00:00 2001 From: AbhishekReddy1127 Date: Tue, 21 Feb 2023 17:28:41 +0000 Subject: [PATCH] Updated the text in the section ErrorBoundary Signed-off-by: AbhishekReddy1127 --- src-docs/src/views/error_boundary/error_boundary.js | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src-docs/src/views/error_boundary/error_boundary.js b/src-docs/src/views/error_boundary/error_boundary.js index c2c8a0e112..4c55c4e888 100644 --- a/src-docs/src/views/error_boundary/error_boundary.js +++ b/src-docs/src/views/error_boundary/error_boundary.js @@ -14,9 +14,7 @@ import React from 'react'; import { OuiErrorBoundary } from '../../../../src/components'; const BadComponent = () => { - throw new Error( - "I'm here to kick butt and chew bubblegum. And I'm all out of gum." - ); + throw new Error('An unhandled exception occurred.'); }; export default () => (