Skip to content

Commit

Permalink
remove unnecessary mut
Browse files Browse the repository at this point in the history
  • Loading branch information
msparkles committed Jul 3, 2024
1 parent e59f42d commit 5844a6b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/bootstrap/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ async fn run(body: impl ExampleBody) {
);

// Add a custom font for some of the examples.
let mut fonts = yak.dom().get_global_or_init(Fonts::default);
let fonts = yak.dom().get_global_or_init(Fonts::default);

static HACK_REGULAR: &[u8] = include_bytes!("../assets/Hack-Regular.ttf");

Expand Down

0 comments on commit 5844a6b

Please sign in to comment.