@rileybathurst/paddle 0.0.119 → 0.0.121

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.119",
4
+ "version": "0.0.121",
5
5
  "type": "module",
6
6
  "scripts": {
7
7
  "dev": "vite",
@@ -1,5 +1,4 @@
1
1
  import * as React from "react";
2
- import Markdown from 'react-markdown';
3
2
 
4
3
  // TODO this would be nice to be able to close but I dont have it right yet
5
4
 
@@ -21,7 +20,7 @@ export const PaddleTopBar = ({ strapiLocale }: PaddleTopBarTypes) => {
21
20
  const currently = new Date();
22
21
 
23
22
  return (
24
- <div className={`${location} top-bar`}>
23
+ <div className='top-bar'>
25
24
  {RainCheckDate > currently ? (
26
25
  <p className="rain-check">
27
26
  <span className="rain-check-date">
@@ -50,7 +49,7 @@ export const PaddleTopBar = ({ strapiLocale }: PaddleTopBarTypes) => {
50
49
  <span className="rain-check-reason">We're closed today due to {strapiLocale.RainCheckReason}</span>
51
50
  </p>
52
51
  ) : (
53
- <p>We&apos;re Open for the 2024 Summer</p>
52
+ <p>{strapiLocale.topbar.data.topbar}</p>
54
53
  )
55
54
  }
56
55
  </div>