We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 69133cf + f3d3823 commit f87f6f3Copy full SHA for f87f6f3
2 files changed
src/components/top-bar.tsx
@@ -60,7 +60,7 @@ export function Topbar() {
60
61
const [isDevelopment, setIsDevelopment] = useState(false);
62
63
- const { activePlayer, uploadPlayers } = useContext(PlayersContext);
+ const { activePlayer } = useContext(PlayersContext);
64
65
useEffect(() => {
66
setIsDevelopment(parseInt(process.env.NEXT_PUBLIC_DEVELOPMENT!) === 1);
src/pages/relationships.tsx
@@ -205,7 +205,7 @@ export default function Relationships() {
205
Icon={HomeIcon}
206
/>
207
<InfoCard
208
- title="Spouse"
+ title={activePlayer?.social?.spouse === "Krobus" ? 'Roommate': 'Spouse'}
209
description={activePlayer?.social?.spouse ?? "No Info"}
210
Icon={UsersIcon}
211
0 commit comments