@@ -114,17 +123,19 @@ export function ContractDetails(props: {
{formatMoney(truePool)} pool
- {inlineTags && tags.length > 0 && (
-
•
- )}
+ {tags.length > 0 && (
+ <>
+
•
-
- {tags.map((tag) => (
-
-
-
- ))}
-
+
+ {tags.map((tag) => (
+
+
+
+ ))}
+
+ >
+ )}
)
}
diff --git a/web/components/contract-overview.tsx b/web/components/contract-overview.tsx
index a3b1077e..88f788e9 100644
--- a/web/components/contract-overview.tsx
+++ b/web/components/contract-overview.tsx
@@ -67,7 +67,7 @@ export const ContractOverview = (props: {
large
/>
-
+
diff --git a/web/lib/firebase/init.ts b/web/lib/firebase/init.ts
index ba10545a..98734946 100644
--- a/web/lib/firebase/init.ts
+++ b/web/lib/firebase/init.ts
@@ -2,8 +2,8 @@ import { getFirestore } from '@firebase/firestore'
import { initializeApp } from 'firebase/app'
// TODO: Reenable this when we have a way to set the Firebase db in dev
-export const isProd = process.env.NODE_ENV === 'production'
-// export const isProd = true
+// export const isProd = process.env.NODE_ENV === 'production'
+export const isProd = true
const firebaseConfig = isProd
? {