Skip to content

Commit

Permalink
Fix links from apps/doc to apps/web (#404)
Browse files Browse the repository at this point in the history
Corrected documentation links in the README.md for "Documentation" and
utils/const.ts.

Review Required for `pnpm run dev:docs`: The dev:docs script in
package.json currently links to apps/docs and cannot be run locally
unless it is changed to apps/web.

Didn't want to change the package.json right away, thought i'd let you
know about this first instead.
  • Loading branch information
jakubno authored Jul 18, 2024
2 parents 165f569 + 03b2a65 commit 6be68fa
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -109,4 +109,4 @@ This repository is a monorepo containing:
1. [Python SDK](/packages/python-sdk)
1. [JS SDK](/packages/js-sdk)
1. [CLI](/packages/cli)
1. [Documentation](/apps/docs/)
1. [Documentation](/apps/web/)
2 changes: 1 addition & 1 deletion apps/web/src/utils/consts.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ export const mdLangToLangShort: Record<string, LangShort> = {

export const languageNames: Record<string, string> = {
js: 'JavaScript & TypeScript',
ts: '⚠️ FIXME See note in apps/docs/src/utils/consts.ts', // Please avoid using `ts`, see note above
ts: '⚠️ FIXME See note in apps/web/src/utils/consts.ts', // Please avoid using `ts`, see note above
javascript: 'JavaScript',
typescript: 'TypeScript',

Expand Down

0 comments on commit 6be68fa

Please sign in to comment.