From e88734f3ebbe2f2249adba3e5f694f6f93aa72ed Mon Sep 17 00:00:00 2001 From: ultrageese Date: Mon, 22 Jun 2026 08:57:40 +1000 Subject: [PATCH] 2rwrw --- code/src/app.rs | 5 ----- code/src/worker_tab.rs | 1 - 2 files changed, 6 deletions(-) diff --git a/code/src/app.rs b/code/src/app.rs index 03513f5..803d966 100644 --- a/code/src/app.rs +++ b/code/src/app.rs @@ -1,7 +1,6 @@ use std::{ collections::{HashMap, HashSet}, default::Default, - ops::Deref, str::FromStr, sync::Arc, }; @@ -56,10 +55,6 @@ impl Default for App<'_> { tab_type: TabTypes::Recipe, title: "Рецепты".to_owned(), }, - Tab { - tab_type: TabTypes::Product, - title: "Продукция".to_owned(), - }, Tab { tab_type: TabTypes::Settings, title: "Настройки".to_owned(), diff --git a/code/src/worker_tab.rs b/code/src/worker_tab.rs index 241a73a..302087a 100644 --- a/code/src/worker_tab.rs +++ b/code/src/worker_tab.rs @@ -3,7 +3,6 @@ use egui::mutex::RwLock; use egui_extras::{Column, TableBuilder}; use std::collections::HashMap; use std::default::Default; -use std::ops::Deref; use std::str::FromStr; use std::sync::Arc;