Angular - Signals
Identify the error in the following code snippet using computed signals:
const price = signal(100); const tax = signal(0.1); const total = computed(() => price + tax * price); console.log(total());
