diff --git a/src/components/MyKiva/BorrowerCarousel.vue b/src/components/MyKiva/BorrowerCarousel.vue
index 628c9d8548..881cec33ec 100644
--- a/src/components/MyKiva/BorrowerCarousel.vue
+++ b/src/components/MyKiva/BorrowerCarousel.vue
@@ -23,7 +23,7 @@
-
+
@@ -153,6 +154,7 @@ const emit = defineEmits(['selected-loan']);
const { loans, totalLoans } = toRefs(props);
const carousel = ref(null);
+const tabs = ref(null);
const windowWidth = ref(0);
const hasActiveLoans = computed(() => {
@@ -233,6 +235,10 @@ const handleResize = () => {
const throttledResize = _throttle(handleResize, 200);
+const onInteractCarousel = interaction => {
+ tabs.value.tabContext.selectedIndex = interaction.value;
+};
+
onMounted(() => {
if (!hasActiveLoans.value) {
$kvTrackEvent('portfolio', 'view', 'no-active-borrowers');