diff --git a/src/session/model/avatar/data.rs b/src/session/model/avatar/data.rs
deleted file mode 100644
index 3e058387..00000000
--- a/src/session/model/avatar/data.rs
+++ /dev/null
@@ -1,145 +0,0 @@
-use gtk::{gdk, glib, prelude::*, subclass::prelude::*};
-use tracing::warn;
-
-use super::AvatarImage;
-use crate::{
- application::Application,
- utils::notifications::{paintable_as_notification_icon, string_as_notification_icon},
-};
-
-mod imp {
- use std::cell::RefCell;
-
- use once_cell::sync::Lazy;
-
- use super::*;
-
- #[derive(Debug, Default)]
- pub struct AvatarData {
- /// The data of the user-defined image.
- pub image: RefCell