Skip to content

Commit bd4d56b

Browse files
committed
fix import paths
1 parent f4f1927 commit bd4d56b

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

client/app/bundles/comments/components/SimpleCommentScreen/ror_components/SimpleCommentScreen.jsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ import SelectLanguage from 'libs/i18n/selectLanguage';
1010
import { defaultMessages, defaultLocale } from 'libs/i18n/default';
1111
import { translations } from 'libs/i18n/translations';
1212

13-
import CommentForm from '../CommentBox/CommentForm/CommentForm';
14-
import CommentList from '../CommentBox/CommentList/CommentList';
15-
import css from './SimpleCommentScreen.module.scss';
13+
import CommentForm from '../../CommentBox/CommentForm/CommentForm';
14+
import CommentList from '../../CommentBox/CommentList/CommentList';
15+
import css from '../SimpleCommentScreen.module.scss';
1616

1717
class SimpleCommentScreen extends BaseComponent {
1818
constructor(props) {

client/app/bundles/comments/rescript/RescriptShow/ror_components/RescriptShow.jsx

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
// Generated by ReScript, PLEASE EDIT WITH CARE
22

33
import * as React from "react";
4-
import * as Header from "./Header/Header.bs.js";
5-
import * as Actions from "./Actions/Actions.bs.js";
6-
import * as AlertError from "./CommentList/AlertError/AlertError.bs.js";
7-
import * as ActionCable from "./bindings/ActionCable.bs.js";
8-
import * as CommentForm from "./CommentForm/CommentForm.bs.js";
9-
import * as CommentList from "./CommentList/CommentList.bs.js";
4+
import * as Header from "../../Header/Header.bs.js";
5+
import * as Actions from "../../Actions/Actions.bs.js";
6+
import * as AlertError from "../../CommentList/AlertError/AlertError.bs.js";
7+
import * as ActionCable from "../../bindings/ActionCable.bs.js";
8+
import * as CommentForm from "../../CommentForm/CommentForm.bs.js";
9+
import * as CommentList from "../../CommentList/CommentList.bs.js";
1010
import * as JsxRuntime from "react/jsx-runtime";
1111

1212
function reducer(param, action) {

0 commit comments

Comments
 (0)