onairos 0.1.6 → 0.1.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -210,7 +210,7 @@ function App() {
|
|
|
210
210
|
|
|
211
211
|
}}
|
|
212
212
|
|
|
213
|
-
const
|
|
213
|
+
const requestData = {
|
|
214
214
|
Small: {
|
|
215
215
|
type:"Personality",
|
|
216
216
|
descriptions:"Insight into your Interests",
|
|
@@ -236,7 +236,7 @@ function App() {
|
|
|
236
236
|
|
|
237
237
|
const onairosID = 'test';
|
|
238
238
|
return (
|
|
239
|
-
<Onairos
|
|
239
|
+
<Onairos requestData={requestData} webpageName={webpageName} proofMode={proofMode} />
|
|
240
240
|
|
|
241
241
|
);
|
|
242
242
|
}
|