diff --git a/src/gui/src/UI/Components/RecoveryCodesView.js b/src/gui/src/UI/Components/RecoveryCodesView.js
deleted file mode 100644
index 8cc3d5e7c..000000000
--- a/src/gui/src/UI/Components/RecoveryCodesView.js
+++ /dev/null
@@ -1,112 +0,0 @@
-/**
- * Copyright (C) 2024-present Puter Technologies Inc.
- *
- * This file is part of Puter.
- *
- * Puter is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Affero General Public License as published
- * by the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU Affero General Public License for more details.
- *
- * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see .
- */
-
-const Component = use('util.Component');
-
-export default def(class RecoveryCodesView extends Component {
- static ID = 'ui.component.RecoveryCodesView';
-
- static PROPERTIES = {
- values: {
- description: 'The recovery codes to display',
- },
- };
-
- static CSS = /*css*/`
- .recovery-codes {
- display: flex;
- flex-direction: column;
- gap: 10px;
- border: 1px solid #ccc;
- padding: 20px;
- margin: 20px auto;
- width: 90%;
- max-width: 600px;
- background-color: #f9f9f9;
- box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
- }
-
- .recovery-codes h2 {
- text-align: center;
- font-size: 18px;
- color: #333;
- margin-bottom: 15px;
- }
-
- .recovery-codes-list {
- display: grid;
- grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
- gap: 10px; /* Adds space between grid items */
- padding: 0;
- }
-
- .recovery-code {
- background-color: #fff;
- border: 1px solid #ddd;
- padding: 10px;
- text-align: center;
- font-family: 'Courier New', Courier, monospace;
- font-size: 12px;
- letter-spacing: 1px;
- }
-
- .actions {
- flex-direction: row-reverse;
- display: flex;
- gap: 10px;
- }
- `;
-
- create_template ({ template }) {
- $(template).html(`
-
-
-
-
-
-
-
-
-
- `);
- }
-
- on_ready ({ listen }) {
- listen('values', values => {
- for ( const value of values ) {
- $(this.dom_).find('.recovery-codes-list').append(`
-