Skip to content

Commit

Permalink
remove vote for series link
Browse files Browse the repository at this point in the history
  • Loading branch information
richyliu committed Sep 10, 2020
1 parent 20ebb5b commit 89fcdf3
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 14 deletions.
2 changes: 1 addition & 1 deletion react_app/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "greggdict",
"version": "1.0.0",
"version": "0.0.5",
"description": "Gregg Shorthand Dictionary",
"author": "Richard Liu (richyliu)",
"license": "MIT",
Expand Down
16 changes: 4 additions & 12 deletions react_app/src/components/FAQ.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,8 @@ const Link = ({ href, children }) => (

const QuestionAndAnswer = ({ question, answer }) => (
<div className="my-8 sm:my-10 leading-snug">
<h3 className="mb-2 text-xl">
{question}
</h3>
<p className="">
{answer}
</p>
<h3 className="mb-2 text-xl">{question}</h3>
<p className="">{answer}</p>
</div>
);

Expand All @@ -32,12 +28,8 @@ const FAQ = () => (
question="Why don't I see my series of Gregg Shorthand?"
answer={
<span>
Currently only simplified is supported. I will add more series if
people find it useful.{' '}
<Link href="https://docs.google.com/forms/d/e/1FAIpQLSe7Dhv-7SiZavvGoYE0Fy-n9n7OCmUQjhUCIw0hMjePtQZntA/viewform?usp=sf_link">
Vote here
</Link>{' '}
for your Gregg series.
Currently only simplified is supported. I may add more series in the
future.
</span>
}
/>
Expand Down
2 changes: 1 addition & 1 deletion react_app/src/settings.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// current version
const version = 'v0.0.5-prerelease';
const version = 'v0.0.5';

// root for the reference.json and the pages/ folder for images
const assetsRoot =
Expand Down

0 comments on commit 89fcdf3

Please sign in to comment.