Skip to content

Commit

Permalink
Merge pull request #668 from gponsinet/fix/gponsinet/btoa-not-imported
Browse files Browse the repository at this point in the history
fix(rn): import btoa
  • Loading branch information
Godefroy Ponsinet committed Nov 27, 2018
2 parents 4d2e37e + 587bc6e commit 760e3e6
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,14 +1,16 @@
import { ScrollView, TextInput, Platform, Clipboard } from 'react-native'
import { btoa } from 'b64-lite'
import React, { PureComponent } from 'react'

import { Button, Flex, TextInputMultilineFix } from './index'
import { RelayContext } from '../../relay'
import { colors } from '../../constants'
import { ScrollView, TextInput, Platform, Clipboard } from 'react-native'
import { marginTop, padding, rounded, textTiny } from '../../styles'
import {
extractPublicKeyFromId,
shareLinkOther,
shareLinkSelf,
} from '../../helpers/contacts'
import { RelayContext } from '../../relay'
import { marginTop, padding, rounded, textTiny } from '../../styles'

const CopyKeyButton = ({ id }) => (
<ActionButton
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
import { btoa } from 'b64-lite'

import EventStream from './EventStream'

export default context => ({
Expand Down

0 comments on commit 760e3e6

Please sign in to comment.