From 8fc357184801582384b9743895915ef900779a87 Mon Sep 17 00:00:00 2001 From: spinline Date: Sat, 14 Feb 2026 02:23:08 +0300 Subject: [PATCH] fix: restore missing BASE64 import --- frontend/src/store.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/store.rs b/frontend/src/store.rs index 1e142fe..e8b3922 100644 --- a/frontend/src/store.rs +++ b/frontend/src/store.rs @@ -6,7 +6,7 @@ use shared::{AppEvent, GlobalStats, NotificationLevel, Torrent}; use std::collections::HashMap; use struct_patch::traits::Patch; use base64::{Engine as _, engine::general_purpose::URL_SAFE_NO_PAD as BASE64_URL}; -// use base64::{Engine as _, engine::general_purpose::STANDARD as BASE64}; +use base64::{Engine as _, engine::general_purpose::STANDARD as BASE64}; use wasm_bindgen::JsCast; use crate::components::ui::toast::{ToastType, toast};