renamed Authentication

This commit is contained in:
Peter Morton 2023-12-19 08:41:58 -06:00
parent 559996be4a
commit abccab4512
2 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
<script lang="ts" setup>
import TransferSummary from "../components/TransferSummary.vue";
import DaVinciAuthentication from "../components/DaVinciAuthentication.vue";
import CustomerAuthenticated from "../components/CustomerAuthenticated.vue";
import CallRiskScoreBar from "../components/CallRiskScoreBar.vue";
defineProps({
@ -12,7 +12,7 @@ defineProps({
<template>
<div class="davinci">
<h3>Da Vinci AI</h3>
<DaVinciAuthentication :authenticated="authenticated" />
<CustomerAuthenticated :authenticated="authenticated" />
<CallRiskScoreBar :score="crsScore" />
<TransferSummary :summary="summary" />
</div>