You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/tutorials/developing-a-user-installable-app.mdx
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -103,7 +103,7 @@ The default install settings of your app determines the default [scopes](/docs/t
103
103
104
104
###### Update Install Link
105
105
106
-
Before adding default install settings, we need to select Discord Provided Link for the app's [install link](/docs/resources/application#install-links). Under the **Install Link** section, select `Discord Provided Link` from the dropdown if it isn't already selected (it should be by default). Once its selected, the **Default Install Settings** will appear.
106
+
Before adding default install settings, we need to select Discord Provided Link for the app's [install link](/docs/resources/application#install-links). Under the **Install Link** section, select `Discord Provided Link` from the dropdown if it isn't already selected (it should be by default). Once it's selected, the **Default Install Settings** will appear.
107
107
108
108
###### Adding Default Install Settings
109
109
@@ -200,7 +200,7 @@ First, go to your project's folder and run the following to start your app:
200
200
npm run start
201
201
```
202
202
203
-
There should be some output indiciating your app is running on port 3000. Behind the scenes, our app is ready to handle interactions from Discord, which includes verifying security request headers and responding to `PING` requests. We're skipping over a lot of the details in this tutorial, but details about preparing apps for interactions is in the [Interactions Overview](/docs/interactions/overview#preparing-for-interactions) documentation.
203
+
There should be some output indicating your app is running on port 3000. Behind the scenes, our app is ready to handle interactions from Discord, which includes verifying security request headers and responding to `PING` requests. We're skipping over a lot of the details in this tutorial, but details about preparing apps for interactions is in the [Interactions Overview](/docs/interactions/overview#preparing-for-interactions) documentation.
204
204
205
205
:::info
206
206
By default, the server will listen to requests sent to port 3000, but if you want to change the port, you can specify a `PORT` variable in your `.env` file.
@@ -358,7 +358,7 @@ When someone clicks on the button, our app would care about two users when handl
358
358
1. User B, who clicked the "Join" button so our app can track who is interested in joining the match
359
359
2. User A, who ran the `/game` command so our app can tell them who is interested in joining the match
360
360
361
-
There are two fields additional fields to know about that can be helpful in this scenario—
361
+
There are two additional fields to know about that can be helpful in this scenario—
0 commit comments