Skip to content

Commit

Permalink
fix: EN_7
Browse files Browse the repository at this point in the history
  • Loading branch information
lucanicoladebiasi committed Jan 31, 2025
1 parent bc93ea0 commit 6946e6e
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 9 deletions.
2 changes: 1 addition & 1 deletion apps/sdk-vite-integration/src/components/TransferLogs.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import {
} from '@vechain/sdk-network';
import { Link } from 'react-router-dom';
import { Transfer } from "../types/index.js";
import { explorerUrl, thorClient } from "../const/index.js";
import { explorerUrl, thorClient } from "../const/index.tsx";

/**
* Reduce the size of a hex string
Expand Down
2 changes: 1 addition & 1 deletion apps/sdk-vite-integration/src/main.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { StrictMode } from 'react'
import { createRoot } from 'react-dom/client'
import './index.css'
import App from './App.js'
import App from './App.tsx'

createRoot(document.getElementById('root')!).render(
<StrictMode>
Expand Down
15 changes: 8 additions & 7 deletions apps/sdk-vite-integration/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,16 @@
{
"compilerOptions": {
"target": "ES2023",
"allowImportingTsExtensions": true,
"declaration": true,
"esModuleInterop": true,
"jsx": "react-jsx",
"lib": ["esnext", "dom"],
"module": "Node16",
"moduleResolution": "Node16",
"jsx": "react-jsx",
"types": ["@vitest/browser/providers/playwright"],
"strict": true,
"declaration": true,
"noEmit": true,
"esModuleInterop": true,
"skipLibCheck": true
"skipLibCheck": true,
"strict": true,
"target": "ES2023",
"types": ["@vitest/browser/providers/playwright"]
}
}

0 comments on commit 6946e6e

Please sign in to comment.