Title may be omitted (#7865)

Fixes https://github.com/zeit/next.js/issues/7854
This commit is contained in:
Joe Haddad 2019-07-10 01:53:20 -04:00 committed by GitHub
parent e5fa2beac1
commit 24fa6b352f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -11,7 +11,7 @@ const statusCodes: { [code: number]: string } = {
export type ErrorProps = {
statusCode: number
title: string
title?: string
}
/**