Remove unused ImePreedit component from text_input example (#12818)

# Objective

- The `ImePreedit` component from
[`text_input`](50699ecf76/examples/input/text_input.rs (L126-L127))
appears to be unused.
- This was found by running `cargo check --workspace --examples`,
originally as part of #12817.

## Solution

- Remove it :)
This commit is contained in:
BD103 2024-03-31 22:33:42 -04:00 committed by GitHub
parent 50699ecf76
commit 9084526794
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -123,9 +123,6 @@ struct Bubble {
timer: Timer,
}
#[derive(Component)]
struct ImePreedit;
fn bubbling_text(
mut commands: Commands,
mut bubbles: Query<(Entity, &mut Transform, &mut Bubble)>,