Skip to content

Commit

Permalink
Oops path (#324)
Browse files Browse the repository at this point in the history
  • Loading branch information
kixelated authored Jan 30, 2025
1 parent ddbe6d4 commit 708c877
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion justfile
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ check:

# Automatically fix some issues.
fix:
cargo clippy --all --fix --allow-dirty --allow-staged --all-targets --all-features
cargo clippy --all --fix --allow-staged --all-targets --all-features
cargo fmt --all
npm i && npm run fix

Expand Down
2 changes: 1 addition & 1 deletion moq-web/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "moq-web"
authors = ["Luke Curley <[email protected]>"]
edition = "2021"
version = "0.4.1"
version = "0.4.2"
license = "MIT OR Apache-2.0"
repository = "https://github.com/kixelated/moq-web"
description = "Web implementation for MoQ utilizing WebAssembly+Typescript"
Expand Down
2 changes: 1 addition & 1 deletion moq-web/src/element/publish.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import * as Rust from "@rust";

import { Element, attribute, element } from "./component";

import { jsx, jsxFragment } from "./jsx";
import { jsx } from "./jsx";

import "@shoelace-style/shoelace/dist/components/radio-group/radio-group.js";
import "@shoelace-style/shoelace/dist/components/radio-button/radio-button.js";
Expand Down
2 changes: 1 addition & 1 deletion moq-web/src/element/watch.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ type BackendState = Rust.BackendState;
// Create a new worker instance that is shared between all instances of the Watch class.
// We wait until the worker is fully initialized before we return the proxy.
const worker: Promise<Comlink.Remote<Bridge>> = new Promise((resolve) => {
const worker = new Worker(new URL("./bridge", import.meta.url), {
const worker = new Worker(new URL("../watch/bridge", import.meta.url), {
type: "module",
});
worker.addEventListener(
Expand Down

0 comments on commit 708c877

Please sign in to comment.