diff --git a/docs/data/toolpad/studio/concepts/custom-server.md b/docs/data/toolpad/studio/concepts/custom-server.md index 4a3ec5389ed..b6054577568 100644 --- a/docs/data/toolpad/studio/concepts/custom-server.md +++ b/docs/data/toolpad/studio/concepts/custom-server.md @@ -33,7 +33,7 @@ app.use('/my-app', handler); app.listen(3001); ``` -To run the custom server you'll have to update the scripts in your your package.json +To run the custom server you'll have to update the scripts in your package.json ```json { diff --git a/docs/data/toolpad/studio/concepts/deployment.md b/docs/data/toolpad/studio/concepts/deployment.md index f217eb9dd51..91f3680f83b 100644 --- a/docs/data/toolpad/studio/concepts/deployment.md +++ b/docs/data/toolpad/studio/concepts/deployment.md @@ -18,7 +18,7 @@ ## Install step -Install required depdencies via: +Install required dependencies via: diff --git a/docs/data/toolpad/studio/concepts/page-properties.md b/docs/data/toolpad/studio/concepts/page-properties.md index 31ce9a23625..424f75ae845 100644 --- a/docs/data/toolpad/studio/concepts/page-properties.md +++ b/docs/data/toolpad/studio/concepts/page-properties.md @@ -8,7 +8,7 @@ ### Options -The possible options for the the display mode are: +The possible options for the display mode are: - **App shell**: Pages with their display mode set to this value will render within the navigation sidebar on the left, allowing for easy navigation between all pages. @@ -52,7 +52,7 @@ Page parameters allow you to pass external data into the Toolpad Studio page sta ### Setting parameters -You can set page parameters from the Page tab in the **Inspector panel** on right. You can add multiple parameters along with a default value for each. +You can set page parameters from the Page tab in the **Inspector panel** on the right. You can add multiple parameters along with a default value for each. ### Using parameters diff --git a/docs/data/toolpad/studio/concepts/queries.md b/docs/data/toolpad/studio/concepts/queries.md index 0bf82c26492..92692b91789 100644 --- a/docs/data/toolpad/studio/concepts/queries.md +++ b/docs/data/toolpad/studio/concepts/queries.md @@ -24,7 +24,7 @@ Queries allow you to bring backend data to your Toolpad Studio page. They are ca You can use this option to enable or disable the query from running -Queries may be programatically re-fetched via the `refetch` function available on these query objects. For example, for a query named `getOrders`, you can add +Queries may be programmatically re-fetched via the `refetch` function available on these query objects. For example, for a query named `getOrders`, you can add ```js getOrders.refetch(); @@ -34,7 +34,7 @@ in the `onClick` binding of a Button component. ## Actions -Actions allow performing updates to remote data sources (edit, update, delete) on a user interaction. Actions are not automatically called, they must be programtically called a JavaScript expression in a binding. For example, for a query named `createCustomer`, we can add +Actions allow performing updates to remote data sources (edit, update, delete) on a user interaction. Actions are not automatically called, they must be programmatically called a JavaScript expression in a binding. For example, for a query named `createCustomer`, we can add ```js createCustomer.call(); diff --git a/docs/data/toolpad/studio/how-to-guides/connect-to-databases.md b/docs/data/toolpad/studio/how-to-guides/connect-to-databases.md index 92ce1bb6811..869776ba18d 100644 --- a/docs/data/toolpad/studio/how-to-guides/connect-to-databases.md +++ b/docs/data/toolpad/studio/how-to-guides/connect-to-databases.md @@ -3,7 +3,7 @@

Toolpad Studio allows you to connect to any database, fast.

You can write a custom function to connect to any database that you need to. -You can focus on writing database queries, while the data fetching and displaying is handled by Toolpad Studio. +You can focus on writing database queries, while the data fetching and displaying are handled by Toolpad Studio. ## Connecting to MySQL