6 lines
132 B
JavaScript
6 lines
132 B
JavaScript
import { withAccount } from "../lib/utils"
|
|
;(function () {
|
|
if (context.user.auth()) return {}
|
|
withAccount((login) => {})
|
|
})
|