Skip to content

Commit

Permalink
fixed build issues
Browse files Browse the repository at this point in the history
  • Loading branch information
ihsraham committed Aug 25, 2024
1 parent 99644ea commit 684968f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -253,11 +253,7 @@ function App() {
SFA React Ton GitHub Example
</h1>

{isLoading || isLoggingIn ? (
<Loading />
) : (
<div className="grid">{web3authSfa ? (loggedIn ? loginView : logoutView) : null}</div>
)}
{isLoading || isLoggingIn ? <Loading /> : <div className="grid">{web3authSfa ? (loggedIn ? loginView : logoutView) : null}</div>}

<footer className="footer">
<a
Expand All @@ -272,4 +268,4 @@ function App() {
);
}

export default App;
export default App;
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,7 @@ export default defineConfig({
define: {
global: "globalThis",
},
build: {
target: 'esnext',
},
});

0 comments on commit 684968f

Please sign in to comment.