Commit 45bf83ff authored by Jeffrey Morgan's avatar Jeffrey Morgan
Browse files

default write key to empty

parent b9a186c8
...@@ -4,7 +4,7 @@ import { v4 as uuidv4 } from 'uuid' ...@@ -4,7 +4,7 @@ import { v4 as uuidv4 } from 'uuid'
const Store = require('electron-store') const Store = require('electron-store')
const store = new Store() const store = new Store()
export const analytics = new Analytics({ writeKey: process.env.TELEMETRY_WRITE_KEY }) export const analytics = new Analytics({ writeKey: process.env.TELEMETRY_WRITE_KEY || '' })
export function id(): string { export function id(): string {
const id = store.get('id') const id = store.get('id')
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment