Skip to content

Commit 6226c33

Browse files
committed
fix tabs
1 parent adf42ee commit 6226c33

File tree

1 file changed

+12
-6
lines changed

1 file changed

+12
-6
lines changed

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

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -89,24 +89,30 @@ Still in the app settings, navigate to the **Install App** page in the left side
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

9191
<Tabs>
92-
<TabItem value="macOS" label="macOS" >
92+
<TabItem value="macOS" label="macOS">
93+
9394
```bash
9495
export SLACK_APP_TOKEN=<YOUR-APP-TOKEN-HERE>
9596
export SLACK_BOT_TOKEN=<YOUR-BOT-TOKEN-HERE>
9697
```
97-
</TabItem>
98-
<TabItem value="windows" label="Windows Command Prompt" >
98+
99+
</TabItem>
100+
<TabItem value="windows" label="Windows Command Prompt">
101+
99102
```
100103
set SLACK_APP_TOKEN=<YOUR-APP-TOKEN-HERE>
101104
set SLACK_BOT_TOKEN=<YOUR-BOT-TOKEN-HERE>
102105
```
103-
</TabItem>
104-
<TabItem value="windows_ps" value="Windows PowerShell" >
106+
107+
</TabItem>
108+
<TabItem value="windows_ps" value="Windows PowerShell">
109+
105110
'''
106111
$env:SLACK_APP_TOKEN="YOUR-APP-TOKEN-HERE"
107112
$env:SLACK_BOT_TOKEN="YOUR-BOT-TOKEN-HERE"
108113
```
109-
</TabItem>
114+
115+
</TabItem>
110116
</Tabs>
111117

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

0 commit comments

Comments
 (0)