Skip to content

Commit 08ef2df

Browse files
committed
remove tabs
1 parent 18ffa01 commit 08ef2df

File tree

1 file changed

+20
-20
lines changed

1 file changed

+20
-20
lines changed

docs/english/tutorial/order-confirmation/order-confirmation.md

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -88,26 +88,26 @@ Still in the app settings, navigate to the **Install App** page in the left side
8888

8989
Within a terminal of your choice, set the two tokens from the previous step as environment variables using the commands below. Make sure not to mix these two up, `SLACK_APP_TOKEN` will start with “xapp-“ and `SLACK_BOT_TOKEN` will start with “xoxb-“.
9090

91-
<Tabs>
92-
<TabItem value="macOS" label="macOS">
93-
```bash
94-
export SLACK_APP_TOKEN=<YOUR-APP-TOKEN-HERE>
95-
export SLACK_BOT_TOKEN=<YOUR-BOT-TOKEN-HERE>
96-
```
97-
</TabItem>
98-
<TabItem value="windows" label="Windows Command Prompt">
99-
```
100-
set SLACK_APP_TOKEN=<YOUR-APP-TOKEN-HERE>
101-
set SLACK_BOT_TOKEN=<YOUR-BOT-TOKEN-HERE>
102-
```
103-
</TabItem>
104-
<TabItem value="windows_ps" value="Windows PowerShell">
105-
'''
106-
$env:SLACK_APP_TOKEN="YOUR-APP-TOKEN-HERE"
107-
$env:SLACK_BOT_TOKEN="YOUR-BOT-TOKEN-HERE"
108-
```
109-
</TabItem>
110-
</Tabs>
91+
For macOS:
92+
93+
```bash
94+
export SLACK_APP_TOKEN=<YOUR-APP-TOKEN-HERE>
95+
export SLACK_BOT_TOKEN=<YOUR-BOT-TOKEN-HERE>
96+
```
97+
98+
For Windows Command Prompt:
99+
100+
```cmd
101+
set SLACK_APP_TOKEN=<YOUR-APP-TOKEN-HERE>
102+
set SLACK_BOT_TOKEN=<YOUR-BOT-TOKEN-HERE>
103+
```
104+
105+
For Windows PowerShell:
106+
107+
```powershell
108+
$env:SLACK_APP_TOKEN="YOUR-APP-TOKEN-HERE"
109+
$env:SLACK_BOT_TOKEN="YOUR-BOT-TOKEN-HERE"
110+
```
111111

112112
Run the following commands to activate a virtual environment for your Python packages to be installed, install the dependencies, and start your app.
113113

0 commit comments

Comments
 (0)