default livestream calims state to empty array
This commit is contained in:
parent
99ec447bee
commit
17d0d9f1e0
1 changed files with 1 additions and 1 deletions
|
@ -61,7 +61,7 @@ export default function CreatorDashboardPage(props: Props) {
|
|||
const [isFetching, setIsFetching] = React.useState(true);
|
||||
const [isLive, setIsLive] = React.useState(false);
|
||||
const [livestreamClaim, setLivestreamClaim] = React.useState(false);
|
||||
const [livestreamClaims, setLivestreamClaims] = React.useState(false);
|
||||
const [livestreamClaims, setLivestreamClaims] = React.useState([]);
|
||||
|
||||
React.useEffect(() => {
|
||||
if (!activeChannelClaimStr) return;
|
||||
|
|
Loading…
Reference in a new issue