fix word spelling

Signed-off-by: fufesou <shuanglongchen@yeah.net>
This commit is contained in:
fufesou 2023-05-12 16:29:10 +08:00
parent 59987f637c
commit bc6ed22006

View File

@ -24,13 +24,13 @@ class _InstallPageState extends State<InstallPage> {
void initState() {
super.initState();
Get.put<DesktopTabController>(tabController);
const lable = "install";
const label = "install";
tabController.add(TabInfo(
key: lable,
label: lable,
key: label,
label: label,
closable: false,
page: _InstallPageBody(
key: const ValueKey(lable),
key: const ValueKey(label),
)));
}