Skip to content

Commit

Permalink
fix: Correct imports to resolve build error
Browse files Browse the repository at this point in the history
  • Loading branch information
DafyddLlyr committed Jul 26, 2024
1 parent 872a7ab commit bb3cbaf
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion app/components/graphs/TenureComparisonWrapper.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"use client";
import React from "react";
import { Household } from "@/app/models/classes";
import { Household } from "@/app/models/Household";
import TenureComparisonBarChart from "./TenureComparisonBarChart";

interface TenureComparisonWrapperProps {
Expand Down
2 changes: 1 addition & 1 deletion app/components/ui/CalculatorInput.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import { trueDependencies } from "mathjs";
import React, { useState } from "react";
import calculateFairhold from "@/app/models/testClasses";
import { Household } from "@/app/models/classes";
import { Household } from "@/app/models/Household";
import Dashboard from './Dashboard';

const CalculatorInput = () => {
Expand Down
2 changes: 1 addition & 1 deletion app/components/ui/Dashboard.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React from 'react';
import TenureComparisonWrapper from '../graphs/TenureComparisonWrapper';
import { Household } from '@/app/models/classes';
import { Household } from '@/app/models/Household';

interface DashboardProps {
data: Household;
Expand Down

0 comments on commit bb3cbaf

Please sign in to comment.