While using a VerticalTimeline component for a Next v13.5.6 project using App Router with TypeScript, this is the warning message that I am getting when running my project on Chrome even in incognito mode as I was under the assumption that it may have been due to a 3rd party Chrome plugin but it is leading to the same warning:
Vertical-timeline add automatically style="--line-color:#FFF:" to the html
set lineColor='' in VerticalTimeline
and in globals.css set your own color:
html{
--line-color: #e2e8f0;
}
While using a VerticalTimeline component for a Next v13.5.6 project using App Router with TypeScript, this is the warning message that I am getting when running my project on Chrome even in incognito mode as I was under the assumption that it may have been due to a 3rd party Chrome plugin but it is leading to the same warning:
Any tips on resolving this issue?