@rileybathurst/paddle 0.0.87 → 0.0.89

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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@rileybathurst/paddle",
3
3
  "private": false,
4
- "version": "0.0.87",
4
+ "version": "0.0.89",
5
5
  "type": "module",
6
6
  "scripts": {
7
7
  "dev": "vite",
@@ -18,13 +18,10 @@ export const PaddleSpecs = (specs: SpecsTypes) =>
18
18
  }
19
19
 
20
20
  if (key === 'time' && typeof value === 'object') {
21
- // if value.timevalue === time then return time entry
22
- // if (value.timevalue === 'time' || value.timevalue === 'duration') {
23
- // ? can I just do anything with time
24
21
  return (
25
22
  <div key={key} className="spec">
26
- <h2>Time</h2>
27
- <h3>{value.timeentry}</h3>
23
+ <h2>{value.value}</h2>
24
+ <h3>{value.entry}</h3>
28
25
  </div>
29
26
  );
30
27
  // }