Skip to content

Commit

Permalink
Fix hotwire-native-bridge js references
Browse files Browse the repository at this point in the history
  • Loading branch information
jayohms committed Sep 25, 2024
1 parent 3f15056 commit f5d60c3
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion public/javascript/application.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import "@hotwired/turbo"
import { Application } from "@hotwired/stimulus"
import "@hotwired/hotwire-native-demo"
import "@hotwired/hotwire-native-bridge"

// Controllers
import MenuController from "./controllers/menu_controller.js"
Expand Down
4 changes: 2 additions & 2 deletions public/javascript/controllers/bridge/form_controller.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { BridgeComponent } from "@hotwired/hotwire-native-demo"
import { BridgeElement } from "@hotwired/hotwire-native-demo"
import { BridgeComponent } from "@hotwired/hotwire-native-bridge"
import { BridgeElement } from "@hotwired/hotwire-native-bridge"

export default class extends BridgeComponent {
static component = "form"
Expand Down
4 changes: 2 additions & 2 deletions public/javascript/controllers/bridge/menu_controller.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { BridgeComponent } from "@hotwired/hotwire-native-demo"
import { BridgeElement } from "@hotwired/hotwire-native-demo"
import { BridgeComponent } from "@hotwired/hotwire-native-bridge"
import { BridgeElement } from "@hotwired/hotwire-native-bridge"

export default class extends BridgeComponent {
static component = "menu"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { BridgeComponent } from "@hotwired/hotwire-native-demo"
import { BridgeComponent } from "@hotwired/hotwire-native-bridge"

export default class extends BridgeComponent {
static component = "overflow-menu"
Expand Down

0 comments on commit f5d60c3

Please sign in to comment.