solve errors in tsconfig
This commit is contained in:
@@ -222,28 +222,13 @@ export function ProfilePage({
|
|||||||
{/* Navbar */}
|
{/* Navbar */}
|
||||||
<Navbar
|
<Navbar
|
||||||
activeCity=""
|
activeCity=""
|
||||||
onCityChange={() => { }}
|
|
||||||
onHomeClick={onHomeClick}
|
|
||||||
onMelbourneClick={onMelbourneClick}
|
|
||||||
onPassesClick={onPassesClick}
|
|
||||||
onCheckoutClick={onCheckoutClick}
|
|
||||||
onSignInClick={onSignInClick}
|
onSignInClick={onSignInClick}
|
||||||
onSignOutClick={onSignOutClick}
|
onSignOutClick={onSignOutClick}
|
||||||
onAttractionsClick={onAttractionsClick}
|
|
||||||
onBlogsClick={onBlogsClick}
|
|
||||||
onHowItWorksClick={onHowItWorksClick}
|
|
||||||
onFAQClick={onFAQClick}
|
|
||||||
onPrivacyPolicyClick={onPrivacyPolicyClick}
|
|
||||||
onAboutUsClick={onAboutUsClick}
|
|
||||||
onProfileClick={onProfileClick}
|
|
||||||
onCityCardsClick={onCityCardsClick}
|
|
||||||
onMagicItineraryClick={onMagicItineraryClick}
|
|
||||||
onPostCardsClick={onPostCardsClick}
|
|
||||||
onOffersClick={onOffersClick}
|
|
||||||
currentPage={currentPage}
|
|
||||||
isUserSignedIn={true}
|
isUserSignedIn={true}
|
||||||
user={{ email: "user@example.com", name: "John Doe" }}
|
user={{ email: "user@example.com", name: "John Doe" }}
|
||||||
/>
|
onCityChange={function (city: string): void {
|
||||||
|
throw new Error('Function not implemented.');
|
||||||
|
}} />
|
||||||
|
|
||||||
{/* Header Section */}
|
{/* Header Section */}
|
||||||
<section className="pt-40 pb-8 bg-gradient-to-br from-muted/30 to-background">
|
<section className="pt-40 pb-8 bg-gradient-to-br from-muted/30 to-background">
|
||||||
|
|||||||
@@ -5,12 +5,12 @@
|
|||||||
"lib": ["DOM", "DOM.Iterable", "ESNext"],
|
"lib": ["DOM", "DOM.Iterable", "ESNext"],
|
||||||
"allowJs": false,
|
"allowJs": false,
|
||||||
"skipLibCheck": true,
|
"skipLibCheck": true,
|
||||||
"esModuleInterop": false,
|
"esModuleInterop": true,
|
||||||
"allowSyntheticDefaultImports": true,
|
"allowSyntheticDefaultImports": true,
|
||||||
"strict": true,
|
"strict": true,
|
||||||
"forceConsistentCasingInFileNames": true,
|
"forceConsistentCasingInFileNames": true,
|
||||||
"module": "ESNext",
|
"module": "ESNext",
|
||||||
"moduleResolution": "Node",
|
"moduleResolution": "bundler",
|
||||||
"resolveJsonModule": true,
|
"resolveJsonModule": true,
|
||||||
"isolatedModules": true,
|
"isolatedModules": true,
|
||||||
"noEmit": true,
|
"noEmit": true,
|
||||||
|
|||||||
Reference in New Issue
Block a user