-
Notifications
You must be signed in to change notification settings - Fork 228
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Spelling #427
Spelling #427
Changes from all commits
06e27e8
95e8394
15a0d9e
35a19e5
95a6e16
9427933
be9c491
0e2083a
f6e3ba9
5032975
57bdc71
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -28,7 +28,7 @@ const Modal = ({ | |
} else { | ||
window.document.body.style.overflow = 'unset'; | ||
} | ||
return () => window.document.body.style.oveflow = 'unset'; | ||
return () => window.document.body.style.overflow = 'unset'; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Notable |
||
}, [isShowing]); | ||
if (isShowing) { | ||
return ReactDOM.createPortal( | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,7 +21,7 @@ export default function Builds({ repo }) { | |
const { params: { namespace, name }, url } = useRouteMatch(); | ||
const history = useHistory(); | ||
|
||
// if repo is inactive, redirect to settigns where | ||
// if repo is inactive, redirect to settings where | ||
// user can proceed with repo activation | ||
useLayoutEffect(() => { | ||
if (!isRepoActive) { | ||
|
@@ -85,7 +85,7 @@ Builds.propTypes = { | |
|
||
Builds.defaultProps = { | ||
repo: { | ||
actice: undefined, | ||
active: undefined, | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. notable |
||
counter: undefined, | ||
}, | ||
}; |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,7 +19,7 @@ export default function NotFound({ user }) { | |
<NotFoundIcon /> | ||
<p className={cx('note')}> | ||
<span>We are sorry, the resource you requested cannot be found.</span> | ||
<sub>That&aposs all we know.</sub> | ||
<sub>That's all we know.</sub> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This isn't strictly necessary, but it's nicer to not rely on this feature of the html parser... |
||
</p> | ||
{!user && ( | ||
<Button | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Some projects don't like changing changelogs. Happy to drop...