Skip to content

Commit c4a3055

Browse files
fixed ternary
1 parent f7deb61 commit c4a3055

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

src/content/partials/networking-services/account-id-api-key.mdx

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,6 @@ import { Markdown } from "~/components";
77

88
:::note
99

10-
{props.showSiteId ? (
11-
<Markdown text={`To export NetFlow statistics, you will need your [account ID](/fundamentals/account/find-account-and-zone-ids/) and [API token](/fundamentals/api/get-started/account-owned-tokens/), as well as the \`site_id\` associated with your Magic WAN Connector.`} />
12-
) : (
13-
<Markdown text={`You will need your [account ID](/fundamentals/account/find-account-and-zone-ids/) and [API token](/fundamentals/api/get-started/account-owned-tokens/).`} />
14-
)}
10+
<Markdown text={`${props.showSiteId ? "To export NetFlow statistics, you" : "You"} will need your [account ID](/fundamentals/account/find-account-and-zone-ids/) and [API token](/fundamentals/api/get-started/account-owned-tokens/)${props.showSiteId ? ", as well as the \`site_id\` associated with your Magic WAN Connector" : " to use the API"}.`} />
1511

1612
:::

0 commit comments

Comments
 (0)