@codemoreira/esad 1.1.0 → 1.1.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/bin/esad.js +1 -1
- package/package.json +1 -1
- package/src/cli/templates/host.js +1 -1
package/bin/esad.js
CHANGED
|
@@ -10,7 +10,7 @@ const deployCommand = require('../src/cli/commands/deploy');
|
|
|
10
10
|
const devCommand = require('../src/cli/commands/dev');
|
|
11
11
|
|
|
12
12
|
program
|
|
13
|
-
.version('1.1.
|
|
13
|
+
.version('1.1.1')
|
|
14
14
|
.description('esad - Easy Super App Development Toolkit');
|
|
15
15
|
|
|
16
16
|
// --- COMMMAND: esad init ---
|
package/package.json
CHANGED
|
@@ -156,7 +156,7 @@ export default function Dashboard() {
|
|
|
156
156
|
<Text className="text-lg font-semibold text-slate-800 mb-4">Your Modules</Text>
|
|
157
157
|
|
|
158
158
|
{MOCK_MODULES.map(m => (
|
|
159
|
-
<Link key={m.id} href={\`/(protected)/module
|
|
159
|
+
<Link key={m.id} href={\`/(protected)/module/\${m.id}\`} asChild>
|
|
160
160
|
<TouchableOpacity className="bg-white p-6 rounded-2xl mb-4 shadow-sm border border-slate-100 flex-row items-center">
|
|
161
161
|
<Text className="text-3xl mr-4">{m.icon}</Text>
|
|
162
162
|
<View className="flex-1">
|