From 1e8148641ae50ff42dc3118326409e09d6227d79 Mon Sep 17 00:00:00 2001 From: Daniel Lugo Date: Wed, 29 Jan 2020 11:41:59 -0400 Subject: [PATCH] actually import open lib --- services/gunDB/Mediator/index.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/services/gunDB/Mediator/index.js b/services/gunDB/Mediator/index.js index 6945ad83..c34776ed 100644 --- a/services/gunDB/Mediator/index.js +++ b/services/gunDB/Mediator/index.js @@ -2,6 +2,8 @@ * @format */ const Gun = require('gun') +// @ts-ignore +require('gun/lib/open') const debounce = require('lodash/debounce') const once = require('lodash/once') const Encryption = require('../../../utils/encryptionStore')