Skip to content

Commit

Permalink
fix: Typos
Browse files Browse the repository at this point in the history
  • Loading branch information
storm1729 committed Dec 14, 2024
1 parent b01f938 commit 2e5acdf
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
7 changes: 7 additions & 0 deletions next.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,13 @@ const apiConfig = {
source: "/v0/check_email",
destination: "/api/v0/check_email",
},
{
// Rewrite `api.reacher.email/v1/commercial_license_trial` to
// `reacher.email/api/v1/commercial_license_trial` to be handled by the
// Next.js API handlers.
source: "/v1/commercial_license_trial",
destination: "/api/v1/commercial_license_trial",
},
];
},
};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export function GetStartedCommercial(props: {
<Markdown>{d.run_docker_setup_server}</Markdown>
<Snippet
symbol=""
text={`docker run -p 8080:8080 -e RCH__COMMERCIAL_LICENSE_TRIAL__API_TOKEN-${userDetails.api_token} reacherhq/commercial-license-trial:latest`}
text={`docker run -p 8080:8080 -e RCH__COMMERCIAL_LICENSE_TRIAL__API_TOKEN=${userDetails.api_token} reacherhq/commercial-license-trial:latest`}
type="lite"
width="100%"
/>
Expand Down

0 comments on commit 2e5acdf

Please sign in to comment.