diff --git a/components/replit/form.js b/components/replit/form.js
index 093e3287..d465c9a8 100644
--- a/components/replit/form.js
+++ b/components/replit/form.js
@@ -113,8 +113,8 @@ const ReplitForm = ({ cssDark }) => {
'/stickers/orphmoji_peefest.png',
'/stickers/skullpup_boba.png',
'/stickers/hackers,_assemble!.png',
- '/stickers/orphmoji_yippee.png',
- '/replit/replit-fire.png'
+ '/stickers/orphmoji_yippee.png'
+ // '/replit/replit-fire.png'
]
const fieldStyle = ({ disabled }) => ({
diff --git a/components/replit/progress.js b/components/replit/progress.js
index 4fd3adab..0ba160a0 100644
--- a/components/replit/progress.js
+++ b/components/replit/progress.js
@@ -14,15 +14,13 @@ const ProgressComponent = ({ progress }) => {
}
return (
-
- {progress.completed ? (
- Export complete! Check your email.
- ) : (
-
- {processedCount} of {progress.repl_count} repls processed!
- {title ? {title} : null}
-
- )}
+
+
+ {progress.completed
+ ? 'Export complete! Check your email.'
+ : `${processedCount} of ${progress.repl_count} repls processed!
+ ${title ? {title} : ''}`}
+
@@ -216,36 +284,11 @@ const ReplitPage = () => {
-
+
How to get your Replit connect.sid token
-
- {tokenSteps.map((step, idx) => (
-
-
- Step {idx + 1}
-
- {step.desc}
-
-
- ))}
-
+