Rename `view_type` to `state_type`

Marshall Bowers created

Change summary

crates/ui2/src/components/collab_panel.rs | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)

Detailed changes

crates/ui2/src/components/collab_panel.rs 🔗

@@ -11,14 +11,14 @@ use crate::{
 
 #[derive(Element)]
 pub struct CollabPanel<S: 'static + Send + Sync + Clone> {
-    view_type: PhantomData<S>,
+    state_type: PhantomData<S>,
     scroll_state: ScrollState,
 }
 
 impl<S: 'static + Send + Sync + Clone> CollabPanel<S> {
     pub fn new(scroll_state: ScrollState) -> Self {
         Self {
-            view_type: PhantomData,
+            state_type: PhantomData,
             scroll_state,
         }
     }