Skip to content

Commit

Permalink
Use FakeTMP for tags on the Crews page
Browse files Browse the repository at this point in the history
  • Loading branch information
NotNite committed Nov 28, 2023
1 parent 9f197c3 commit d3d3a6e
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/routes/crews/Crews.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import { Link, useNavigate } from "react-router-dom";
import { useRequiredAuth } from "../../util";
import { join } from "../../api/crew";
import Important from "../../components/Important";
import FakeTMP from "../../components/FakeTMP";

function CrewInviteCode() {
const navigate = useNavigate();
Expand Down Expand Up @@ -89,7 +90,9 @@ export default function Crews() {
{crews.map((crew) => (
<tr key={crew.id}>
<td>{crew.name}</td>
<td>{crew.tag}</td>
<td>
<FakeTMP text={crew.tag} />
</td>
<td>
<a href={`/crews/${crew.id}`} role="button">
View
Expand Down

0 comments on commit d3d3a6e

Please sign in to comment.