Skip to content

Commit

Permalink
Try with including
Browse files Browse the repository at this point in the history
  • Loading branch information
hanbyul-here committed Sep 26, 2024
1 parent 0e7eb53 commit f4ab2de
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions app/scripts/main.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ import { PageLoading } from '$components/common/loading-skeleton';
// Views
import UhOh from '$components/uhoh';
import ErrorBoundary from '$components/uhoh/fatal-error';
// eslint-disable-next-line
import { Array } from '$types/array';

import '$types/array';

const Home = lazy(() => import('$components/home'));
const About = lazy(() => import('$components/about'));
Expand Down
4 changes: 2 additions & 2 deletions app/scripts/types/array.d.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

// Extend Array interface to include the last property
export interface Array<T> {
readonly last: T | undefined;
interface Array<T> {
last: T | undefined;
}

0 comments on commit f4ab2de

Please sign in to comment.