fix: [#12248] Fix bad import

Signed-off-by: David Zemon <david@zemon.name>
This commit is contained in:
David Zemon
2022-06-30 10:12:15 -05:00
parent 3a014730dc
commit a5a78be5b8
2 changed files with 2 additions and 2 deletions
@@ -26,7 +26,7 @@ import {
OAuthRefreshRequest,
OAuthResult,
} from '../../lib/oauth';
import { Strategy as OktaStrategy } from 'passport-okta-oauth';
import { Strategy as OktaStrategy } from '@davidzemon/passport-okta-oauth';
import passport from 'passport';
import {
executeFrameHandlerStrategy,
+1 -1
View File
@@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
declare module 'passport-okta-oauth' {
declare module '@davidzemon/passport-okta-oauth' {
export class Strategy {
constructor(options: any, verify: any);
}