(modeOrState)
| 33 | } |
| 34 | |
| 35 | function getPanelModeLabel(modeOrState) { |
| 36 | const mode = typeof modeOrState === 'string' ? modeOrState : getPanelMode(modeOrState); |
| 37 | return mode === 'sub2api' ? 'SUB2API' : 'CPA'; |
| 38 | } |
| 39 | |
| 40 | function isSignupPageHost(hostname = '') { |
| 41 | return ['auth0.openai.com', 'auth.openai.com', 'accounts.openai.com'].includes(hostname); |
nothing calls this directly
no test coverage detected