Skip to content

Commit

Permalink
Formatted yet again
Browse files Browse the repository at this point in the history
  • Loading branch information
HunterBarclay committed Jul 12, 2024
1 parent 8dbb8ad commit 30b90d1
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions fission/src/ui/panels/mirabuf/ImportMirabufPanel.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,8 @@ const ImportMirabufPanel: React.FC<PanelPropsImpl> = ({ panelId }) => {

// Get Default Mirabuf Data, Load into manifest.
useEffect(() => {
(async () => {
// To remove the prettier warning
const x = async () => {
fetch(`/api/mira/manifest.json`)
.then(x => x.json())
.then(x => {
Expand Down Expand Up @@ -209,7 +210,8 @@ const ImportMirabufPanel: React.FC<PanelPropsImpl> = ({ panelId }) => {
fields,
})
})
})()
}
x()
}, [])

// Select a mirabuf assembly from the cache.
Expand Down

0 comments on commit 30b90d1

Please sign in to comment.