Skip to content

Commit

Permalink
couple missing js endings on file imports
Browse files Browse the repository at this point in the history
  • Loading branch information
jgresham committed Jul 1, 2024
1 parent 0744189 commit 62c5631
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import {
} from '../../../common/node-spec-tool/specDiff.js';
import type Node from '../../../common/node.js';
import type { NodeSpecification } from '../../../common/nodeSpec.js';
import Linking from '../../Generics/redesign/Link/Linking';
import Linking from '../../Generics/redesign/Link/Linking.js';
import alphaBanner from '../../assets/images/artwork/alphaBanner.svg';
import electron from '../../electronGlobal.js';
import { useAppSelector } from '../../state/hooks.js';
Expand All @@ -19,7 +19,7 @@ import {
contentSection,
contentTitle,
topBanner,
} from './controllerUpdate.css';
} from './controllerUpdate.css.js';

const ControllerUpdate = () => {
const { t } = useTranslation();
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import { useState } from 'react';
import { Modal } from '../../Generics/redesign/Modal/Modal';
import { Modal } from '../../Generics/redesign/Modal/Modal.js';
import ControllerUpdate from '../ControllerUpdate/ControllerUpdate.js';
import { modalRoutes } from './modalUtils';
import { type ModalConfig, modalOnChangeConfig } from './modalUtils';
import { modalRoutes } from './modalUtils.js';
import { type ModalConfig, modalOnChangeConfig } from './modalUtils.js';

type Props = {
modalOnClose: () => void;
Expand Down

0 comments on commit 62c5631

Please sign in to comment.