Skip to content

Commit

Permalink
RavenDB-22581 npm update
Browse files Browse the repository at this point in the history
  • Loading branch information
ml054 committed Jul 9, 2024
1 parent 028ce07 commit 22e8b90
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/compile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
- name: Setup nodejs
uses: actions/setup-node@v2
with:
node-version: '14'
node-version: '18'
- name: Restore
run: |
npm install
Expand Down
6 changes: 1 addition & 5 deletions src/Raven.Studio/typescript/components/common/LazyLoad.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import React, { ReactNode } from "react";

interface LazyLoadProps {
children?: ReactNode | ReactNode[];
active?: boolean;
active: boolean;
className?: string;
}

Expand All @@ -20,7 +20,3 @@ export function LazyLoad(props: LazyLoadProps): JSX.Element {

return <React.Fragment>{children}</React.Fragment>;
}

LazyLoad.defaultProps = {
active: true,
};

0 comments on commit 22e8b90

Please sign in to comment.