I am trying to ingest a CSV file into Azure SQL with a column with data type of time. The value in the csv file is in this format "hh:mm". I have setup my conversion setting into these settings:

But then I am having this error:
ErrorCode=TypeConversionFailure,Exception occurred when converting value '23:55' for column name 'systime' from type 'String' (precision:, scale:) to type 'TimeSpan' (precision:255, scale:7). Additional info: Input string was not in a correct format.
Not sure how to solve this issue. Can someone please help me. Thanks in advance.

I gave the
Timespanformat ashh\:mmand tried to debug the pipeline that has the copy activity to copy data from csv file to SQL database.Mapping settings:
This is because one of the time data in source csv is
24:00. hh which represents the hour in the timespan and its value ranges from 0 to 23 only. To resolve this issue, you can modify the source data to remove any values that are out of range for the hour component of the Time data type. In this case, you can remove any values that are equal to or greater than 24. You can also use mapping dataflow in ADF to replace '24:00' with '00:00'.Steps to do in dataflow:
iif(valuation_time == '24:00', '00:00', valuation_time )