Skip to content

Commit

Permalink
Fix bad import references
Browse files Browse the repository at this point in the history
  • Loading branch information
stanlemon committed Oct 11, 2024
1 parent aa58f6a commit 0e650da
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 7 deletions.
2 changes: 1 addition & 1 deletion apps/react-pouchdb-example/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@stanlemon/react-pouchdb-example",
"version": "0.3.0",
"version": "0.3.1",
"description": "A react app using pouchdb built in typescript",
"author": "Stan Lemon <[email protected]",
"license": "MIT",
Expand Down
2 changes: 1 addition & 1 deletion apps/react-pouchdb-example/src/Login.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import * as React from "react";
import { FontAwesomeIcon } from "@fortawesome/react-fontawesome";
import { faUser, faLock } from "@fortawesome/free-solid-svg-icons";
import { LoginViewProps as Props } from "@stanlemon/react-couchdb-authentication/dist/components/LoginView";
import { LoginViewProps as Props } from "@stanlemon/react-couchdb-authentication";

export function Login(props: Props): React.ReactElement {
return (
Expand Down
2 changes: 1 addition & 1 deletion apps/react-pouchdb-example/src/SignUp.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import * as React from "react";
import { FontAwesomeIcon } from "@fortawesome/react-fontawesome";
import { faUser, faEnvelope, faLock } from "@fortawesome/free-solid-svg-icons";
import { SignUpViewProps as Props } from "@stanlemon/react-couchdb-authentication/dist/components/SignUpView";
import { SignUpViewProps as Props } from "@stanlemon/react-couchdb-authentication";

export function SignUp(props: Props): React.ReactElement {
return (
Expand Down
3 changes: 1 addition & 2 deletions packages/react-couchdb-authentication/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,7 @@
],
"type": "module",
"exports": [
"./src/index.ts",
"./src/index.js"
"./src/index.ts"
],
"types": "./dist/index.d.ts",
"files": [
Expand Down
3 changes: 1 addition & 2 deletions packages/react-pouchdb/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,7 @@
},
"type": "module",
"exports": [
"./src/index.ts",
"./src/index.js"
"./src/index.ts"
],
"types": "./dist/index.d.ts",
"files": [
Expand Down

0 comments on commit 0e650da

Please sign in to comment.