chore: Fix typos.

This commit is contained in:
Sam Tolmay 2021-11-26 14:40:00 +02:00
parent 19bf81ad31
commit ea8c813abf
No known key found for this signature in database
GPG Key ID: D004126FCD1A6DF0
2 changed files with 2 additions and 2 deletions

View File

@ -252,7 +252,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
### BREAKING CHANGES
* **render:** Multple contexts on a page are no longer supported. Context category blocks no longer exist, and the first block on a bage no longer needs to be of category context.
* **render:** Multiple contexts on a page are no longer supported. Context category blocks no longer exist, and the first block on a page no longer needs to be of category context.
* **operators:** Getter operators can no longer get from another context.
* **operators:** The _index operator is no longer supported in node env.
* The _event, _global, _input, _state, and _url_query operators are no longer evaluated in connections or requests.

View File

@ -20,7 +20,7 @@ import Page from '../components/Page.js';
export async function getServerSideProps(context) {
const { pageId } = context.params;
// TODO: get the write api context options
// TODO: get the right api context options
const apiContext = await createApiContext({ buildDirectory: './build' });
// TODO: Maybe we can only get rootConfig once?