Skip to content

Commit

Permalink
update docs
Browse files Browse the repository at this point in the history
  • Loading branch information
rodydavis committed Nov 29, 2024
1 parent 711d7ca commit 9d33be3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion website/src/content/docs/guides/persisted-signals.md
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ mixin PersistedSignalMixin<T> on Signal<T> {
Future<T> load() async {
final val = await store.getItem(key);
if (val == null) return internalValue;
if (val == null) return value;
return decode(val);
}
Expand Down

0 comments on commit 9d33be3

Please sign in to comment.