Improvement, Fixes

Signed-off-by: Hadi <112569860+anotherhadi@users.noreply.github.com>
This commit is contained in:
Hadi
2026-03-17 00:04:06 +01:00
parent 55d7a3404a
commit 909d61525a
5 changed files with 26 additions and 16 deletions

View File

@@ -1,18 +1,8 @@
<script lang="ts">
import { User, Lock, Check, MessageCircle } from "lucide-svelte";
import type { Result } from "src/types/nav";
export interface Result {
manufacturer: string;
name: string;
icon: string;
tags: string[];
version: string;
comment: string;
user: string;
pass: string;
}
let { result }: { result: Result } = $props();
let { result }: { result: Result} = $props();
let copiedUser = $state(false);
let copiedPass = $state(false);