We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 822a5f6 commit f8eb25dCopy full SHA for f8eb25d
packages/react-error-overlay/src/components/NavigationBar.js
@@ -55,8 +55,12 @@ function NavigationBar(props: NavigationBarPropsType) {
55
return (
56
<div style={navigationBarStyle}>
57
<span style={buttonContainerStyle}>
58
- <button onClick={previous} style={leftButtonStyle}>←</button>
59
- <button onClick={next} style={rightButtonStyle}>→</button>
+ <button onClick={previous} style={leftButtonStyle}>
+ ←
60
+ </button>
61
+ <button onClick={next} style={rightButtonStyle}>
62
+ →
63
64
</span>
65
{`${currentError} of ${totalErrors} errors on the page`}
66
</div>
0 commit comments