From d3a20fadeee68c6dd6ce663f519249f472b92905 Mon Sep 17 00:00:00 2001 From: bhishp Date: Thu, 26 Oct 2023 13:05:53 +0100 Subject: [PATCH 1/4] Updated the readme based on chat with Cal --- README.MD | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.MD b/README.MD index febcb9c..a4aef0f 100644 --- a/README.MD +++ b/README.MD @@ -167,6 +167,9 @@ has any good examples then please do submit them. ## Contributing + +This is some great new informaiton + ### Development You can test changes by building the package locally. The flow would be something like this: From b34061402484c97bbc7caadbd3944cc51982d63b Mon Sep 17 00:00:00 2001 From: bhishp Date: Thu, 26 Oct 2023 13:12:10 +0100 Subject: [PATCH 2/4] Added users array --- README.MD | 3 +-- src/index.tsx | 2 ++ 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/README.MD b/README.MD index a4aef0f..53c1a7e 100644 --- a/README.MD +++ b/README.MD @@ -167,8 +167,7 @@ has any good examples then please do submit them. ## Contributing - -This is some great new informaiton +More changes to the users feature ### Development diff --git a/src/index.tsx b/src/index.tsx index 9a21b25..b169b95 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -10,6 +10,8 @@ import { export { DecoratorParams } from './shared'; +const users = ["cal", "bhish"]; + export const withFormik = makeDecorator({ name: 'withFormik', parameterName: 'formik', From f93092a5ed89e4f3e9d0e813da4ceb79afe67661 Mon Sep 17 00:00:00 2001 From: bhishp Date: Thu, 26 Oct 2023 13:13:36 +0100 Subject: [PATCH 3/4] Also added john --- src/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.tsx b/src/index.tsx index b169b95..cf49592 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -10,7 +10,7 @@ import { export { DecoratorParams } from './shared'; -const users = ["cal", "bhish"]; +const users = ["cal", "bhish", "john"]; export const withFormik = makeDecorator({ name: 'withFormik', From 08d818e19c588d6abeaa9dc9a5d993a6ffdbe0b4 Mon Sep 17 00:00:00 2001 From: bhishp Date: Thu, 26 Oct 2023 13:21:41 +0100 Subject: [PATCH 4/4] added sarah as well --- src/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.tsx b/src/index.tsx index cf49592..27baa42 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -10,7 +10,7 @@ import { export { DecoratorParams } from './shared'; -const users = ["cal", "bhish", "john"]; +const users = ["cal", "bhish", "john", "sarah"]; export const withFormik = makeDecorator({ name: 'withFormik',