Skip to content

Commit 407db75

Browse files
authored
chore(angular): update Config deprecation message (#19908)
* update deprecation msg * add exact release
1 parent 768e3ae commit 407db75

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

angular/src/providers/config.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ export class Config {
3333
}
3434

3535
set(key: keyof IonicConfig, value?: any) {
36-
console.warn(`[DEPRECATION][Config]: The Config.set() method is deprecated and will be removed in the next major release.`);
36+
console.warn(`[DEPRECATION][Config]: The Config.set() method is deprecated and will be removed in Ionic Framework 6.0. Please see https://ionicframework.com/docs/angular/config for alternatives.`);
3737
const c = getConfig();
3838
if (c) {
3939
c.set(key, value);

0 commit comments

Comments
 (0)