Skip to content

Commit

Permalink
show import if firebase has no email
Browse files Browse the repository at this point in the history
  • Loading branch information
u0@m0 committed Apr 27, 2024
1 parent 328ac7a commit c9bb8d5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/pages/create/channel/import.js
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ export default function PageNewChannelImport({dbSession: {radio4000ApiUrl, sessi
<r4-migration>
<r4-migration-step>
<h3>Login Radio4000 <mark>version 1</mark></h3>
{sessionFirebase?.email ? (
{sessionFirebase ? (
<p>
{sessionFirebase.email}{' '}
<button onClick={() => firebase.auth().signOut()} className="ButtonReset underline">
Expand Down Expand Up @@ -127,7 +127,7 @@ export default function PageNewChannelImport({dbSession: {radio4000ApiUrl, sessi

<r4-migration-step>
{/* MIGRATE STUFF */}
{sessionFirebase?.email && session?.user?.email ? (
{sessionFirebase && session?.user?.email ? (
<>
{!migrationResult && !userChannelFirebase ? (
<p>
Expand Down

0 comments on commit c9bb8d5

Please sign in to comment.