@teispace/next-maker 1.19.0 → 1.19.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [1.19.1](https://github.com/teispace/npm-packages/compare/next-maker-v1.19.0...next-maker-v1.19.1) (2026-04-29)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Code Refactoring
|
|
7
|
+
|
|
8
|
+
* remove console logs from loading and error state handlers in hook template ([6cd953a](https://github.com/teispace/npm-packages/commit/6cd953a3f9b82dc37d249644913bbf6110c878b3))
|
|
9
|
+
|
|
3
10
|
## [1.19.0](https://github.com/teispace/npm-packages/compare/next-maker-v1.18.0...next-maker-v1.19.0) (2026-04-28)
|
|
4
11
|
|
|
5
12
|
|
package/dist/index.js
CHANGED
|
@@ -414,12 +414,10 @@ export const ${r} = () => {
|
|
|
414
414
|
|
|
415
415
|
const handleSetLoading = (loading: boolean) => {
|
|
416
416
|
dispatch(setLoading(loading));
|
|
417
|
-
console.log('Loading state updated:', loading);
|
|
418
417
|
};
|
|
419
418
|
|
|
420
419
|
const handleSetError = (error: string | null) => {
|
|
421
420
|
dispatch(setError(error));
|
|
422
|
-
console.log('Error state updated:', error);
|
|
423
421
|
};
|
|
424
422
|
|
|
425
423
|
return {
|