Fix let -> const

This commit is contained in:
Vladyslav Matsiiako
2022-12-04 23:18:39 -05:00
parent b21cb521da
commit 088668e1b0

View File

@@ -26,7 +26,7 @@ export interface IK {
* @param {object} obj.env - which environment a user is pushing to
*/
const pushKeys = async({ obj, workspaceId, env }: { obj: object; workspaceId: string; env: string; }) => {
let sharedKey = await getLatestFileKey({ workspaceId });
const sharedKey = await getLatestFileKey({ workspaceId });
const PRIVATE_KEY = localStorage.getItem("PRIVATE_KEY");