Skip to content

Commit

Permalink
bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
treeder authored Oct 6, 2023
1 parent 47513af commit a0515a3
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion example/bun-hono/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ let rend = new Rend({
}
})


await addLocale('es', './public/locales/es.js')

const app = new Hono()
Expand Down
2 changes: 1 addition & 1 deletion example/bun-hono/public/components/current-car.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,6 @@ export class CurrentCar extends LitElement {
</div>
`
}

}

customElements.define('current-car', CurrentCar)
2 changes: 1 addition & 1 deletion example/bun-hono/public/components/hello-world.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { html, css, LitElement } from 'lit'
// import { styles } from '/css/lit.js' // TODO: reimplement this
import '@material/web/button/filled-button.js'
import state from '/state/state.js'
import state from 'https://cdn.jsdelivr.net/gh/treeder/state@0/state.js'

export class HelloWorld extends LitElement {
static styles = [
Expand Down

0 comments on commit a0515a3

Please sign in to comment.