Skip to content

Commit

Permalink
Remove debug print
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielleHuisman committed Mar 30, 2024
1 parent e99cf96 commit 3bb08f7
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions packages/leptos/test/visual/src/spec/placement.rs
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,9 @@ pub fn Placement() -> impl IntoView {
<p>
The floating element should be correctly positioned when given each of the 12 placements.
</p>
<div class="container" style=move || {
log::info!("rtl {}", rtl());
match rtl() {
true => "direction: rtl;",
false => "direction: ltr;",
}
<div class="container" style=move || match rtl() {
true => "direction: rtl;",
false => "direction: ltr;",
}>
<div _ref=reference class="reference">
Reference
Expand Down

0 comments on commit 3bb08f7

Please sign in to comment.