Skip to content
This repository was archived by the owner on Mar 18, 2025. It is now read-only.

Commit 3ec983d

Browse files
committed
use cryptr config template
1 parent df440aa commit 3ec983d

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

example/ios/Podfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -342,7 +342,7 @@ EXTERNAL SOURCES:
342342

343343
SPEC CHECKSUMS:
344344
boost-for-react-native: 39c7adb57c4e60d6c5479dd8623128eb5b3f0f2c
345-
cryptr-cryptr-react-native: f2ba2a9cc7db0dffed375f4060d0decf45f00a4f
345+
cryptr-cryptr-react-native: 783004a7f75a4bf2a6c0876fc460dc53f904b8fd
346346
DoubleConversion: cde416483dac037923206447da6e1454df403714
347347
FBLazyVector: 3bb422f41b18121b71783a905c10e58606f7dc3e
348348
FBReactNativeSpec: f2c97f2529dd79c083355182cc158c9f98f4bd6e

example/src/App.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import * as React from 'react';
22
import { CryptrProvider } from '@cryptr/cryptr-react-native';
33

44
import HomeScreen from './screens/HomeScreen';
5-
import cryptrConfig from '../cryptrConfig.template';
5+
import { cryptrConfig } from '../cryptrConfig.template';
66

77
export default function App() {
88
return (

example/src/components/AuthenticatedView.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import {
99
import { styles } from '../styles';
1010
import HorizontalDivider from './HorizontalDivider';
1111
import TokenView from './TokenView';
12-
import { IDP_ID } from 'example/cryptrConfig.template';
12+
import { IDP_ID } from '../../cryptrConfig.template';
1313

1414
const AuthenticatedView = () => {
1515
const { accessToken, decoratedRequest, user } = useCryptr();

example/src/components/UnauthenticatedView.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import React from 'react';
22
import { StyleSheet } from 'react-native';
33
import { SsoSignInButton } from '@cryptr/cryptr-react-native';
4-
import { IDP_ID } from 'example/cryptrConfig.template';
4+
import { IDP_ID } from '../../cryptrConfig.template';
55

66
export const unauthStyles = StyleSheet.create({
77
ssoBtnContainer: {

0 commit comments

Comments
 (0)