From d4fe5998ccc014972eec41b7e661d00a50f065cd Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Miguel=20Calder=C3=B3n?=
 <miguelcalderon@users.noreply.github.com>
Date: Tue, 3 Jun 2025 09:47:51 +0200
Subject: [PATCH] Fix wrong port in TypeScript README.md

## Details

`npm run dev` will use the default port, 3000, but `npm start` is configured to use 8080 in the example, and it's the script we share in the README.md, so it needs amending.

See https://pspdfkit.slack.com/archives/C0GJ3587N/p1748894280774199
---
 examples/typescript/README.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/examples/typescript/README.md b/examples/typescript/README.md
index cd7a8c2..95be621 100644
--- a/examples/typescript/README.md
+++ b/examples/typescript/README.md
@@ -29,7 +29,7 @@ We are ready to launch the app! 🎉
 npm start
 ```
 
-You can now open http://localhost:3000 in your browser and enjoy!
+You can now open http://localhost:8080 in your browser and enjoy!
 
 ## Support, Issues and License Questions