From 3c4f6f5b10564588e5420f2c345c771cea2d095e Mon Sep 17 00:00:00 2001 From: samaradel Date: Tue, 16 Apr 2024 12:07:12 +0200 Subject: [PATCH] remove type keyword --- packages/playground/src/utils/ssh_keys.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/playground/src/utils/ssh_keys.ts b/packages/playground/src/utils/ssh_keys.ts index d9fa8e7541..98d94ca548 100644 --- a/packages/playground/src/utils/ssh_keys.ts +++ b/packages/playground/src/utils/ssh_keys.ts @@ -2,7 +2,7 @@ import { KeypairType } from "@threefold/grid_client"; import crypto from "crypto"; import { useProfileManager } from "@/stores"; -import { type SSHKeyData } from "@/types"; +import { SSHKeyData } from "@/types"; import { formatSSHKeyTableCreatedAt } from "./date"; import { getGrid, getMetadata, storeSSH } from "./grid";