Such prefixes can be safely removed.
Example:
fun example() {
$"Example: prefix of length one is always redundant"
$$"Example: string contains no interpolated values"
$$"Example: $$ dollars are plain characters here $$"
}
After the quick fixes are applied:
fun example() {
"Example: prefix of length one is always redundant"
"Example: string contains no interpolated values"
"Example: $$ dollars are plain characters here $$"
}