Skip to content

Commit 4a177ed

Browse files
committed
minor bug fix
1 parent 5ab1504 commit 4a177ed

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "remix-development-tools",
33
"description": "Remix development tools - a set of tools for developing/debugging Remix.run apps",
44
"author": "Alem Tuzlak",
5-
"version": "4.7.5",
5+
"version": "4.7.6",
66
"license": "MIT",
77
"keywords": [
88
"remix",

src/client/tabs/ErrorsTab.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ const ErrorsTab = () => {
6565
onClick={() =>
6666
sendJsonMessage({
6767
type: "open-source",
68-
data: { source: error.parent.file.replace(".tsx", "") },
68+
data: { source: error.parent.file },
6969
})
7070
}
7171
className="cursor-pointer text-white"
@@ -81,7 +81,7 @@ const ErrorsTab = () => {
8181
onClick={() =>
8282
sendJsonMessage({
8383
type: "open-source",
84-
data: { source: error.child.file.replace(".tsx", "") },
84+
data: { source: error.child.file },
8585
})
8686
}
8787
className="cursor-pointer text-white"

0 commit comments

Comments
 (0)