Skip to content

Commit

Permalink
Fix imports
Browse files Browse the repository at this point in the history
  • Loading branch information
mauriciofierrom committed Mar 14, 2024
1 parent 3071473 commit 7f00f75
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions app/javascript/controllers/player_controller.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
"use strict";

import { Controller } from "@hotwired/stimulus";
import YoutubePlayer from "./player/youtube_player";
import { PlayingState, ReadyState, EditingState, PickingPointState } from "./player/state";
import LoopManager from "./player/loop_manager"
import { PlayingState, ReadyState, EditingState, PickingPointState } from "controllers/player/state";
import LoopManager from "controllers/player/loop_manager"
import YoutubePlayer from "controllers/player/youtube_player";

/** Controller for the YouTube player custom functionality */
export default class extends Controller {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
],
"moduleDirectories": [
"node_modules",
"app/javascript/controllers"
"app/javascript/"
],
"testEnvironment": "jsdom",
"silent": true
Expand Down

0 comments on commit 7f00f75

Please sign in to comment.